/* Sherpa Landing Page Styles */

:root {
    --primary-color: #007AFF;
    --dark-blue: #1A2B4B;
    --deep-navy: #0F172A;
    --text-main: #1D1D1F;
    --text-sub: #86868B;
    --bg-light: #F5F5F7;
    --white: #FFFFFF;
    --gradient-blue: linear-gradient(135deg, #2E5BFF 0%, #00C6FF 100%);
    --gradient-dark: linear-gradient(180deg, #1A2B4B 0%, #0F172A 100%);
    --gradient-navy: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --gradient-cyan: linear-gradient(135deg, #48C6EF 0%, #6F86D6 100%);
    --gradient-teal: linear-gradient(135deg, #009688 0%, #004D40 100%);
    --gradient-sherpa: linear-gradient(135deg, #FF512F 0%, #DD2476 100%);
    --gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-lime: linear-gradient(135deg, #A8E063 0%, #56AB2F 100%);
    --gradient-indigo: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    --gradient-slate: linear-gradient(135deg, #708090 0%, #2F4F4F 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard Variable', -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
    color: var(--text-main);
    line-height: 1.5;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
    min-height: 100vh;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1380px;
    width: 100%;
    height: 80px;
    padding: 0 50px;
    margin: 0 auto;
    background: white;
}

.logo img {
    width: auto;
}

nav.gnb {
    display: flex;
    gap: 64px;
}

nav.gnb a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
    position: relative;
}

nav.gnb a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
}

.btn-contact {
    background-color: #ff473e;
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Hero Section */
.sherpa-hero {
    padding: 0 0;
    background-color: var(--white);
}

.hero-inner {
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
    height: 540px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    padding: 80px;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: right center;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

/* Theme Backgrounds */
.theme-sherpa .hero-bg { background-image: url('../images/sherpa_back.png'); }
.theme-blue .hero-bg { background: var(--gradient-blue); }
.theme-navy .hero-bg { background-image: url('../images/mapping_main_image.png'); }
.theme-navy .hero-bg::after {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.4) 45%, rgba(15, 23, 42, 0) 80%);
}
.theme-navy .hero-target-info {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 0;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.95rem;
}
.theme-navy .hero-target-info .info-item {
    display: flex;
    gap: 8px;
}
.theme-navy .hero-target-info .info-item .label {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}
.theme-navy .hero-target-info .info-item .value {
    color: rgba(255, 255, 255, 0.9);
}
.theme-navy .btn-app.solid-coral {
    background-color: #FF473E;
    border: none;
}
.theme-navy .btn-app.solid-coral:hover {
    background-color: #E03E36;
    transform: translateY(-2px);
}
.mapping-methods {
    padding-top: 40px;
    padding-bottom: 80px;
}
.study-card.mapping-card-1::before {
    background-image: url('../images/mapping_data_image1.png');
}
.study-card.mapping-card-2::before {
    background-image: url('../images/mapping_data_image2.png');
}
.study-card.mapping-card-3::before {
    background-image: url('../images/mapping_data_image3.png');
}
.mapping-showcase {
    padding: 40px 20px 80px 20px;
}
.mapping-showcase .showcase-header {
    margin-bottom: 40px;
}
.mapping-showcase .phone-item {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto 60px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.mapping-showcase .phone-img {
    flex: 0 1 680px;
    display: flex;
    justify-content: center;
}
.mapping-showcase .phone-img img {
    width: 100%;
    max-width: 680px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
    transition: transform 0.4s ease, filter 0.4s ease;
}
.mapping-showcase .phone-img img:hover {
    transform: translateY(-8px) scale(1.02);
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.12));
}
.mapping-showcase .phone-content {
    flex: 0 1 580px;
}
.mapping-showcase .phone-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}
.mapping-showcase .phone-content p {
    font-size: 1.05rem;
    margin-bottom: 24px;
}
.mapping-showcase .content-label-top {
    font-size: 0.95rem;
    margin-bottom: 8px;
}
.mapping-showcase .phone-item.text-left {
    flex-direction: row-reverse;
}
.mapping-showcase .phone-item.image-left {
    flex-direction: row;
}
.mapping-showcase .card-grid-img {
    flex: 0 1 720px;
}
.mapping-showcase .card-grid-img img {
    max-width: 720px;
    border-radius: 0;
    filter: none;
}
.mapping-showcase .card-grid-img img:hover {
    transform: none;
    filter: none;
}

/* Mapping Data Section */
.mapping-data-section .data-grid {
    overflow: hidden;
    padding: 60px;
}

.mapping-data-section .data-img {
    border-radius: 16px 16px 0 0;
    filter: none;
    margin-bottom: -2px;
}
.mapping-data-section .data-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mapping CTA Section */
.mapping-cta-section {
    background: var(--white);
}
.mapping-cta-section .cta-content .section-title {
    font-size: 2.75rem;
    margin-bottom: 40px;
}
.mapping-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-cta-outline {
    width: 240px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 24px 28px;
    background: var(--white);
    border: 1px solid #D2D2D7;
    border-radius: 12px;
    color: #1D1D1F;
    text-decoration: none;
    transition: all 0.3s ease;

    font-family: Pretendard;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0px;

}
.btn-cta-outline:hover {
    background: #F5F5F7;
    border-color: #86868B;
}
.btn-cta-outline .cta-arrow {
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 400;
}
.mapping-cta-section .cta-character {
    max-width: 520px;
}
.theme-cyan .hero-bg { background: var(--gradient-cyan); }
.theme-teal .hero-bg { background: var(--gradient-teal); }
.theme-purple .hero-bg { background: var(--gradient-purple); }
.theme-lime .hero-bg { background: var(--gradient-lime); }
.theme-indigo .hero-bg { background: var(--gradient-indigo); }
.theme-slate .hero-bg { background: var(--gradient-slate); }





.hero-content {
    position: relative;
    z-index: 3;
    max-width: 645px;
    text-align: left;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-divider {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 30px 0;
}

.hero-desc-section {
    margin-bottom: 30px;
}

.hero-desc-section .desc-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.hero-desc-section .desc-text {
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.6;
    opacity: 0.9;
}


.hero-target {
    margin-bottom:158px;
    font-size: 0.95rem;
    opacity: 0.8;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding:12px;
    display: inline-block;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    animation: fadeInRight 1s ease-out;
}

.hero-image img {
    max-height: 480px;
    width: auto;
    border-radius: 24px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.btn-app {
    width: 240px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    justify-content: center;
    text-align: center;
}

.btn-app img {
    height: 24px;
}

.btn-app:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Section Common */
section {
    padding: 100px 20px;
}

.section-inner {
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
}

.section-title {

    text-align: center;
    margin-bottom: 80px;



    font-family: Pretendard;
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -0.5px;
    text-align: center;

}

/* Study Management Section */
.study-management {
    background-color: var(--white);
    padding: 150px 0;
}

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

.study-card {
    position: relative;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s;
    cursor: pointer;
}

.study-card:hover {
    transform: translateY(-10px);
}

.study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.study-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.study-card.card-1::before {
    background-image: url('../images/data/camp_sherpa_detail_data_1.png');
}

.study-card.card-2::before {
    background-image: url('../images/data/camp_sherpa_detail_data_2.png');
}

.study-card.card-3::before {
    background-image: url('../images/data/camp_sherpa_detail_data_3.png');
}

.card-content {
    position: relative;
    z-index: 3;
    padding: 20px;
}

.card-label {
    display: block;    
    margin-bottom: 36px;


    font-family: Pretendard;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -0.5px;
    text-align: center;

}

.card-quote {


    font-family: Pretendard;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: -0.5px;
    text-align: center;

}

/* Tag Cloud Section */
.tag-section {
    background: var(--dark-blue);
    color: var(--white);
    text-align: center;
    padding: 150px 20px;
}

.section-inner.full-width {
    max-width: 100%;
    padding: 0;
}

.tag-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.tag-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0 20px;
}

/* Optional: Subtle animation to make it feel more dynamic */
.tag-row:nth-child(1) {
    animation: slideLeft 60s linear infinite;
}

.tag-row:nth-child(2) {
    animation: slideRight 60s linear infinite;
}

.tag-row:nth-child(3) {
    animation: slideLeft 70s linear infinite;
}

@keyframes slideLeft {
    0% {
        transform: translateX(10%);
    }

    50% {
        transform: translateX(-10%);
    }

    100% {
        transform: translateX(10%);
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(-10%);
    }

    50% {
        transform: translateX(10%);
    }

    100% {
        transform: translateX(-10%);
    }
}

.tag-bubble {
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 1rem;
    color: var(--white);
    position: relative;
    white-space: nowrap;
    transition: all 0.3s;
}

.tag-bubble:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.tag-bubble::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 85px;
    border-left: 23px solid transparent;
    border-top: 16px solid rgba(255, 255, 255, 0.1);
}

.tag-bubble:nth-child(2n)::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: 85px;
    left: auto;
    border-left: 0;
    border-right: 23px solid transparent;
    border-top: 16px solid rgba(255, 255, 255, 0.1);
}

/* System Feature Section */
.system-features {
    background-color: var(--white);
    padding: 150px 0;
}

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

.feature-card {
    background: #F4F7FA;
    border-radius: 32px;
    padding: 50px ;
    position: relative;
    text-align: left;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.point-badge {
    width: 98px;
    height: 24px;
    padding:0;
    background-color: rgba(253, 71, 58, 1);    
    color: white;
    border-radius: 12px;
    display: block;
    margin-bottom: 64px;

    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.5px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.point-badge img {
    height: 12px;
    width: 12px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 32px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    margin-bottom: 20px;


    font-family: Pretendard;
    font-weight: 700;
    font-style: Bold;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: -1px;

}

.feature-card p {
    color: rgba(0, 0, 0, 0.6);



    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.5px;

}

/* Phone Showcase */
.phone-showcase {
    background-color: var(--white);
    padding: 120px 20px;
}

.showcase-header {
    text-align: center;
    margin-bottom: 100px;
}

.showcase-header .section-title {
    margin-bottom: 20px;
}

.showcase-header .section-subtitle {
    color: var(--text-sub);
    font-size: 1.1rem;
}

.phone-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-bottom: 150px;
}

.phone-item:nth-of-type(odd) {
    flex-direction: row-reverse;
}

.phone-item:nth-of-type(even) {
    flex-direction: row;
}

.phone-img {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

.phone-img img {
    max-width: 620px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
}

.phone-content {
    flex: 0 1 500px;
}

.content-label-top {
    color: rgba(132, 132, 132, 1);
    font-family: Pretendard;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 115%;
    letter-spacing: -0.5px;


    margin-bottom: 12px;
    display: block;
}

.phone-content h3 {
    color: rgba(0, 0, 0, 1);
    margin-bottom: 24px;


    font-family: Pretendard;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 27px;
    line-height: 150%;
    letter-spacing: -0.5px;

}

.phone-content p {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 96px;
    word-break: keep-all;
}

.content-label-bottom {
    font-family: Pretendard;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0px;
    color: rgba(153, 153, 153, 1);

}

.content-label-bottom-num {
    color: rgba(0, 0, 0, 1);
}
.content-label-slash {
    color: rgba(153, 153, 153, 1);
    margin: 0 16px;
}
.btn-learn-more {
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Data Panels */
.data-section {
    background: var(--white);
    padding: 120px 20px;
}

.data-header {
    text-align: center;
    margin-bottom: 80px;
}

.data-header .section-title {
    margin-bottom: 20px;
}

.data-header .section-subtitle {
    color: rgba(34, 34, 34, 1);


    font-family: Pretendard;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;

}

.data-grid {
    background: var(--dark-blue);
    border-radius: 42px;
    padding: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    color: var(--white);
}

.data-panel {
    display: flex;
    flex-direction: column;
}

.panel-num {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;

    color: rgba(255, 255, 255, 0.25);
}

.data-panel h3 {
    
    color: var(--white);
    
    font-family: Pretendard;
    font-weight: 400;
    font-style: Bold;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: -1px;
    padding-bottom: 40px;

}
.data-panel h3 strong {
    font-weight: 700;
 
}

.panel-divider {
    width: 100%;
    height: 1px;
    border-top: 1px dotted rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.panel-text-primary {
    color: rgba(182, 190, 207, 1);
    
    margin-bottom: 16px;

    font-family: Pretendard;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: -0.5px;

}

.panel-text-secondary {
    font-family: Pretendard;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 165%;
    letter-spacing: -0.5px;
    margin-bottom: 40px;

    color: rgba(191, 191, 191, 1);
}

.data-img {
    margin-top: auto;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
}

.data-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    overflow: hidden;
}

.cta-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.cta-content {
    flex: 1;
    text-align: left;
}

.cta-content .section-title {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 50px;
    text-align: left;
    color: #1D1D1F;
}

.cta-character-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.cta-character {
    max-width: 600px;
    height: auto;
}

.store-buttons {
    display: flex;
    gap: 15px;
}

.btn-store {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid #D2D2D7;
    border-radius: 12px;
    padding: 14px 28px;
    transition: all 0.3s ease;
    width: 220px;
    gap: 12px;
    text-decoration: none;
}

.btn-store:hover {
    background: #F5F5F7;
    border-color: #86868B;
}

.btn-store img {
    height: 24px;
    width: auto;
}

.btn-store span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1D1D1F;
}

html {
    scroll-behavior: smooth;
}

/* Footer Section */
.site-footer {
    background-color: #2b2b2b;
    color: #888888;
    padding: 50px 0;
    width: 100%;
    text-align: left;
}

.footer-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 50px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
    font-weight: 700;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.footer-controls {
    display: flex;
    gap: 12px;
}

.related-sites {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #888888;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
}

.btn-go {
    background-color: #444;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.footer-info {
    font-size: 13px;
    line-height: 1.8;
}

.footer-info p {
    margin-bottom: 4px;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
}

.footer-links a.bold {
    color: #bbb;
    font-weight: 700;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {

    .study-grid,
    .feature-cards,
    .data-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-inner {
        height: auto;
        padding: 40px;
    }
}

@media (max-width: 768px) {

    .study-grid,
    .feature-cards,
    .data-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-inner {
        border-radius: 24px;
        padding: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .tag-row {
        flex-wrap: wrap;
    }

    .btn-app {
        justify-content: center;
    }

    .phone-item {
        flex-direction: column !important;
        text-align: center;
        gap: 40px;
    }

    .cta-flex {
        flex-direction: column;
        text-align: center;
    }

    .cta-content .section-title,
    .mapping-cta-section .cta-content .section-title {
        text-align: center;
        font-size: 2rem;
    }

    .mapping-cta-buttons {
        justify-content: center;
    }

    .cta-character-container {
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    section {
        padding: 60px 20px;
    }
}