/* ============================================
   GROUPE SCOLAIRE SIKANY - HOMEPAGE STYLES
   ============================================ */

/* ============================================
   HERO SECTION - PREMIUM
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: var(--header-height);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5, 4, 73, 0.58) 0%,
        rgba(8, 6, 107, 0.44) 50%,
        rgba(80, 10, 10, 0.34) 100%
    );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 4rem;
    padding-bottom: 8rem;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(122, 11, 11, 0.25);
    border: 1px solid rgba(122, 11, 11, 0.5);
    color: #ffb3b3;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.6s ease-out;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.7; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Title */
.hero-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.08;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
    animation: fadeInUp 0.7s ease-out 0.1s both;
}

.hero-title-accent {
    background: linear-gradient(90deg, #ff8c8c, #ffb3b3, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(200, 220, 255, 0.9);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    animation: fadeInUp 0.7s ease-out 0.2s both;
}

.hero-description {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(220, 230, 255, 0.85);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.7s ease-out 0.3s both;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease-out 0.4s both;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #7A0B0B, #a01010);
    color: #ffffff;
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(122, 11, 11, 0.4);
    white-space: nowrap;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(122, 11, 11, 0.55);
    background: linear-gradient(135deg, #9a1010, #c01212);
    color: #ffffff;
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.7);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Hero Inline Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 20px 28px;
    width: fit-content;
    animation: fadeInUp 0.7s ease-out 0.5s both;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
    position: relative;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    display: inline;
    font-family: var(--font-primary);
}

.hero-stat-suffix {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ff8c8c;
    display: inline;
    font-family: var(--font-primary);
}

.hero-stat-label {
    font-size: 0.72rem;
    color: rgba(200, 215, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    font-weight: 600;
    white-space: nowrap;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeIn 1s ease-out 1s both;
}

.hero-scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.hero-scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
    animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* ============================================
   STATS SECTION - DARK PREMIUM
   ============================================ */
.hp-stats-section {
    background: linear-gradient(135deg, #04035a 0%, #07065f 50%, #0a0668 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hp-stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(122,11,11,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hp-stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hp-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7A0B0B, #ff6b6b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.hp-stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.07);
    border-color: rgba(122,11,11,0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.hp-stat-card:hover::before {
    transform: scaleX(1);
}

.hp-stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 14px;
    background: rgba(122,11,11,0.15);
    border: 1px solid rgba(122,11,11,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff8c8c;
    transition: all 0.3s ease;
}

.hp-stat-card:hover .hp-stat-icon {
    background: rgba(122,11,11,0.25);
    border-color: rgba(122,11,11,0.6);
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(122,11,11,0.3);
}

.hp-stat-value {
    font-size: 2.6rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    display: inline;
    font-family: var(--font-primary);
}

.hp-stat-suffix {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff8c8c;
    display: inline;
}

.hp-stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(190, 210, 255, 0.65);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.hp-stat-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(122,11,11,0.3), transparent);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.hp-about {
    background: #ffffff;
}

.hp-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hp-about-images {
    position: relative;
}

.hp-about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(8,6,107,0.2);
    position: relative;
}

.hp-about-img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hp-about-img-main:hover img {
    transform: scale(1.04);
}

.hp-about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hp-about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-about-img-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: linear-gradient(135deg, #7A0B0B, #a01010);
    color: #fff;
    padding: 16px 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(122,11,11,0.4);
}

.hp-about-badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    font-family: var(--font-primary);
}

.hp-about-badge-text {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
    line-height: 1.3;
}

.hp-about-title {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hp-about-divider {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #7A0B0B, #ff6b6b);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.hp-about-desc {
    color: var(--color-gray-700);
    line-height: 1.8;
    font-size: 1.02rem;
    margin-bottom: 2rem;
}

.hp-about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 2.5rem;
}

.hp-about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.hp-about-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(122,11,11,0.08);
    border: 1px solid rgba(122,11,11,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7A0B0B;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hp-about-feature:hover .hp-about-feature-icon {
    background: rgba(122,11,11,0.15);
    transform: scale(1.05);
}

.hp-about-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.hp-about-feature p {
    font-size: 0.9rem;
    color: var(--color-gray-600);
    margin: 0;
    line-height: 1.5;
}

.hp-about-btn {
    border-radius: 50px;
    padding: 14px 32px;
}

/* ============================================
   VALUES SECTION - DARK
   ============================================ */
.hp-values {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hp-values-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #04035a 0%, #070660 40%, #0d0555 100%);
    z-index: 0;
}

.hp-values-bg::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122,11,11,0.2) 0%, transparent 70%);
}

.hp-values-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hp-values-desc {
    color: rgba(190, 210, 255, 0.7);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}

.hp-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 3rem;
}

.hp-value-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.hp-value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(122,11,11,0.0), rgba(122,11,11,0.0));
    transition: all 0.35s ease;
    opacity: 0;
}

.hp-value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(122,11,11,0.4);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.hp-value-card:hover::before {
    background: linear-gradient(135deg, rgba(122,11,11,0.12), rgba(8,6,107,0.08));
    opacity: 1;
}

.hp-value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    background: rgba(122,11,11,0.12);
    border: 1px solid rgba(122,11,11,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff8c8c;
    transition: all 0.35s ease;
}

.hp-value-card:hover .hp-value-icon {
    background: rgba(122,11,11,0.25);
    border-color: rgba(255,100,100,0.5);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(122,11,11,0.35);
}

.hp-value-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.hp-value-desc {
    font-size: 0.88rem;
    color: rgba(180, 200, 255, 0.65);
    line-height: 1.7;
    margin: 0;
}

.hp-value-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7A0B0B, #ff6b6b);
    border-radius: 1px;
    margin: 20px auto 0;
    transition: width 0.4s ease;
}

.hp-value-card:hover .hp-value-line {
    width: 50px;
}

/* ============================================
   FACILITIES SECTION
   ============================================ */
.hp-facilities {
    background: #f8f9fa;
}

.hp-facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hp-facility-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(8,6,107,0.08);
    transition: all 0.35s ease;
}

.hp-facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(8,6,107,0.18);
}

.hp-facility-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.hp-facility-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hp-facility-card:hover .hp-facility-img img {
    transform: scale(1.1);
}

.hp-facility-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5,4,73,0.88) 0%, rgba(122,11,11,0.78) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.35s ease;
}

.hp-facility-card:hover .hp-facility-overlay {
    opacity: 1;
}

.hp-facility-overlay-content {
    text-align: center;
    color: #fff;
    padding: 20px;
    transform: translateY(10px);
    transition: transform 0.35s ease;
}

.hp-facility-card:hover .hp-facility-overlay-content {
    transform: translateY(0);
}

.hp-facility-overlay-content svg {
    margin: 0 auto 10px;
    display: block;
    color: #ff8c8c;
}

.hp-facility-overlay-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.hp-facility-overlay-content p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.hp-facility-info {
    padding: 20px;
}

.hp-facility-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(122,11,11,0.1);
    color: #7A0B0B;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.hp-facility-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.hp-facility-info p {
    font-size: 0.85rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.hp-news {
    background: #ffffff;
}

.hp-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.hp-news-card {
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(8,6,107,0.08);
    box-shadow: 0 4px 20px rgba(8,6,107,0.06);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.hp-news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(8,6,107,0.15);
}

.hp-news-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.hp-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hp-news-card:hover .hp-news-img img {
    transform: scale(1.08);
}

.hp-news-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    border-radius: 50px;
    background: linear-gradient(135deg, #7A0B0B, #a01010);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(122,11,11,0.35);
}

.hp-news-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hp-news-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--color-gray-500);
    margin-bottom: 12px;
}

.hp-news-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.hp-news-body p {
    font-size: 0.88rem;
    color: var(--color-gray-600);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}

.hp-news-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #7A0B0B;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.hp-news-link:hover {
    gap: 10px;
    color: #a01010;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.hp-testimonials {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hp-testi-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #04035a 0%, #080668 100%);
    z-index: 0;
}

.hp-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 3rem;
}

.hp-testi-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.35s ease;
}

.hp-testi-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(122,11,11,0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.hp-testi-stars {
    color: #ffcf40;
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.hp-testi-text {
    color: rgba(200, 215, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

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

.hp-testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7A0B0B, #a01010);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}

.hp-testi-author strong {
    display: block;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
}

.hp-testi-author span {
    font-size: 0.78rem;
    color: rgba(180,200,255,0.6);
}

/* ============================================
   CTA SECTION - PREMIUM
   ============================================ */
.hp-cta {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hp-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hp-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.4) saturate(0.7);
}

.hp-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5,4,73,0.9) 0%, rgba(80,8,8,0.75) 100%);
    z-index: 1;
}

.hp-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px var(--spacing-md);
}

.hp-cta-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,150,150,0.4);
    color: #ffb3b3;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.hp-cta-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.2rem;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hp-cta-desc {
    font-size: 1.05rem;
    color: rgba(220, 230, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hp-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hp-cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hp-cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(200, 220, 255, 0.7);
    font-size: 0.88rem;
    font-weight: 600;
}

.hp-cta-feature svg {
    color: #7affa0;
    flex-shrink: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .hp-stats-grid,
    .hp-values-grid,
    .hp-facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hp-testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hp-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hp-about-img-secondary {
        bottom: -20px;
        right: -10px;
        width: 150px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
        padding: 16px;
    }
    .hero-stat-divider { display: none; }
    .hero-stat-item { padding: 0 12px; }

    .hp-stats-grid,
    .hp-news-grid,
    .hp-testi-grid {
        grid-template-columns: 1fr;
    }
    .hp-values-grid,
    .hp-facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hp-cta-features { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .hp-values-grid,
    .hp-facilities-grid {
        grid-template-columns: 1fr;
    }
    .hero-buttons { flex-direction: column; }
    .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
    .hp-cta-buttons { flex-direction: column; align-items: center; }
}
