:root {
    --color-primary: #61a6fa;
    --color-secondary: #a172f3;
    --color-tertiary: #2eeaff;
    --color-text-dark: #020817;
    --color-text-light: #64748b;
    --color-text-white: #ffffff;
    --color-bg-light: #fafafa;
    --color-bg-white: #ffffff;
    --color-border: #e2e8f0;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

section {
	padding-top: 20px;
	padding-bottom: 20px;
    position: relative;
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 700;
    color: var(--color-text-white);
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(170deg, #3b82f6 0%, #06b6d4 346.1%);
    box-shadow: 0px 0px 20px 0px rgba(97, 166, 250, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 25px 0px rgba(97, 166, 250, 0.4);
}

.text-gradient-primary {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.text-gradient-secondary {
    background: linear-gradient(90deg, var(--color-primary), var(--color-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.navbar {
    border-bottom: 1px solid;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}
.logo-img {
    height: 70px;
    width: auto;
}
.logo-text {
    font-size: 23.4px;
    font-weight: 700;
    color: var(--color-text-dark);
}
.main-nav {
    display: flex;
    gap: 24px;
}
.main-nav a {
    font-size: 13.8px;
    font-weight: 500;
    color: var(--color-text-dark);
    transition: color 0.3s ease;
}
.main-nav a:hover {
    color: var(--color-primary);
}
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
@media (max-width: 1024px) {
    .main-nav {
        display: none; /* In a real project, this would open a mobile menu */
    }
    .mobile-nav-toggle {
        display: block;
    }
}

/* CSS for section section:hero */
.hero-section {
    padding-top: 100px;
    padding-bottom: 100px;
}
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.hero-content {
    flex: 1;
    position: relative;
}
.hero-decorative-elements {
    position: absolute;
    top: -120px;
    left: -30px;
    width: 200px;
    height: 200px;
}
.hero-star-icon {
    position: absolute;
    width: 96px;
    height: 96px;
    top: 20px;
    left: 0;
}
.hero-gradient-circle {
    position: absolute;
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 141.42%);
    border-radius: 9999px;
    opacity: 0.2;
    top: 0;
    left: 80px;
}
.hero-deco-1 {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 20px;
    left: 120px;
}
.hero-deco-2 {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 100px;
    left: 144px;
}
.hero-title {
    font-size: 68px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--color-text-dark);
}
.hero-title .letter-w {
  color: #C14CEF;
}

.hero-title .letter-a {
  color: #15AA8D;
}

.hero-title .letter-y {
  color: #0576D3;
}
.hero-subtitle {
    font-size: 18.6px;
    color: var(--color-text-light);
    line-height: 1.75;
    max-width: 600px;
}
.hero-subtitle-highlight {
    color: var(--color-primary);
    font-weight: 600;
}
.hero-form-wrapper {
    flex-basis: 594px;
    flex-shrink: 0;
}
.form-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    backdrop-filter: blur(1px);
}
.form-title {
    font-size: 23px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}
.form-subtitle {
    font-size: 15.25px;
    color: rgba(2, 8, 23, 0.7);
    margin-bottom: 24px;
}
.hero-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form-input-group {
    background-color: #f1f5f9;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 8px 12px;
    text-align: left;
}
.form-input-group label {
    display: none; /* Using placeholder-like text instead */
}
.form-input-group input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 13.5px;
    color: var(--color-text-light);
    padding: 8px 0;
}
.form-input-group::before {
    content: attr(data-label);
    font-size: 13.5px;
    color: var(--color-text-light);
}
.form-submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border-radius: 12px;
}
.form-disclaimer {
    font-size: 12px;
    color: rgba(2, 8, 23, 0.6);
    margin-top: 16px;
}
@media (max-width: 1024px) {
    .hero-container {
        display: block;
        text-align: center;
    }
    .hero-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .hero-content {
        order: 2;
        margin-bottom: 20px;
    }
    .hero-form-wrapper {
        order: 1;
        width: 100%;
        max-width: 594px;
    }
    .hero-title {
        font-size: 48px;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-decorative-elements {
        display: none;
    }
}

/* CSS for section section:achievements */
.achievements-section {
    background-color: var(--color-bg-white);
}
.achievements-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
}
.achievements-title {
    font-size: 28.5px;
    font-weight: 700;
    margin-bottom: 40px;
}
.achievements-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.achievement-item {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 308px;
    box-sizing: border-box;
}
.achievement-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 141.42%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.achievement-icon {
    width: 24px;
    height: 24px;
}
.achievement-text {
    font-size: 20px;
    font-weight: 700;
    color: rgba(2, 8, 23, 0.7);
    text-align: center;
    line-height: 1.25;
}

/* CSS for section section:journey */
.journey-section {
    color: var(--color-text-white);
    text-align: center;
}
.journey-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.journey-title {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 24px;
}
.journey-subtitle {
    font-size: 18.4px;
    color: #5c6269;
    margin-bottom: 80px;
    max-width: 670px;
}
.journey-timeline {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1152px;
    position: relative;
    margin-bottom: 80px;
    gap: 20px;
}
.timeline-line {
    position: absolute;
    top: 90px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(180deg, #3b82f6 0%, #06b6d4 14450.09%);
    border-radius: 9999px;
    z-index: 0;
}
.timeline-step {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 22%;
    position: relative;
    z-index: 1;
}
.timeline-step h3 {
    color: var(--color-text-dark);
    font-size: 16px;
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 8px;
}
.timeline-step p {
    color: var(--color-text-light);
    font-size: 13.6px;
    line-height: 1.4;
}
.timeline-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0da2e7 0%, #2eeaff 141.42%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    margin-top: -72px; /* Pulls icon up over the line */
}
.timeline-icon-wrapper img {
    width: 32px;
    height: 32px;
}
.timeline-step-deco {
    margin-top: 24px;
}
.journey-cta {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.journey-cta-bg-elements {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-bg-circle-1 { background-color: #a172f3; border-radius: 50%; width: 24px; height: 24px; position: absolute; top: 150px; left: -50px; }
.cta-bg-circle-2 { background-color: #2eeaff; border-radius: 50%; width: 32px; height: 32px; position: absolute; top: -12px; right: -50px; }
.journey-cta-icon-wrapper {
    width: 192px;
    height: 192px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 141.42%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.journey-cta-icon-wrapper img {
    width: 96px;
    height: 96px;
}
.journey-cta-btn {
    background: linear-gradient(173deg, #a172f3 0%, #2eeaff 470.38%);
    font-size: 17.4px;
    gap: 8px;
	z-index: 999;
}
@media (max-width: 992px) {
    .journey-timeline {
        flex-direction: column;
        gap: 80px;
        align-items: center;
    }
    .timeline-line {
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 100%;
        top: 0px;
        bottom: 32px;
    }
    .timeline-step {
        width: 80%;
        max-width: 300px;
    }
}

/* CSS for section section:methodology */
.methodology-section { color: var(--color-text-white); text-align: center; }
.methodology-container { display: flex; flex-direction: column; align-items: center; }
.methodology-title { font-size: 44.4px; font-weight: 700; margin-bottom: 24px; }
.methodology-subtitle { font-size: 18.6px; color: var(--color-text-light); margin-bottom: 80px; max-width: 670px; }
.methodology-steps {
    display: flex;
    justify-content: center;
    gap: 32px;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
}

.step-card {
    border-radius: 20px;
    padding: 40px 30px;
    flex: 1;
    min-width: 320px;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);
    color: #fff;
}

/* Daha büyük kart görünümü */
.large-card {
    padding: 60px 40px;
}

/* Sertifika kartı (logo solda - yazı sağda) */
.card-certificate {
    background: url("images/certificate-bg.png") no-repeat center/cover; /* sana attığın görsel buraya gelecek */
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-certificate .card-content {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 500px;
}

.card-certificate .card-icon-left {
    width: 200px;
    height: auto;
    flex-shrink: 0;
}

.card-certificate .card-text {
    text-align: left;
}

.card-certificate h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.card-certificate p {
    font-size: 15px;
    line-height: 1.5;
}

/* İkinci kart */
.style-purple {
    background: linear-gradient(135deg, #a172f3 0%, #6c5ce7 100%);
}

.style-purple h3, 
.style-purple p {
    color: #fff;
}
.style-light {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

.style-light h3, 
.style-light p {
    color: #000000;
}

/* Genel ikon */
.card-icon {
    height: auto;
    margin-bottom: 16px;
}

.card-btn {
    margin-top: 20px;
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #2563eb, #0891b2);
}

@media (max-width: 768px) { 
    .card-certificate .card-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
 }

.principles-title { font-size: 28px; font-weight: 700; color: var(--color-text-dark); margin-bottom: 40px; margin-top: 60px; }
.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, auto));
  gap: 24px;
  width: 100%;
  max-width: 1152px;
  margin: 0 auto 60px auto;
  justify-content: center;
}

.principle-card { background-color: var(--color-bg-white); border: 1px solid var(--color-border); border-radius: 12px; padding: 24px; text-align: left; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; justify-content: center; align-items: center;}
.principle-icon-wrapper { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.principle-icon-wrapper.style-gradient-1 { background: linear-gradient(90deg, #61a6fa 0%, #a172f3 100%); }
.principle-icon-wrapper.style-gradient-2 { background: linear-gradient(90deg, #a172f3 0%, #2eeaff 100%); }
.principle-icon-wrapper.style-gradient-3 { background: linear-gradient(90deg, #2eeaff 0%, #61a6fa 100%); }
.principle-card h4 { color: var(--color-text-dark); font-size: 19px; font-weight: 700; margin-bottom: 12px; text-align: center;}
.principle-card p { color: var(--color-text-light); font-size: 15.25px; line-height: 1.6; text-align: center;}
.methodology-cta-card { border: 1px solid var(--color-border); border-radius: 24px; padding: 40px; max-width: 514px; width: 100%; background-color: rgba(255, 255, 255, 0.05); backdrop-filter: blur(1px); }
.methodology-cta-card .cta-icon { margin-bottom: 16px; }
.methodology-cta-card h3 { font-size: 22.7px; font-weight: 700; color: var(--color-text-dark); margin-bottom: 16px; }
.methodology-cta-card p { font-size: 15.25px; color: rgba(2, 8, 23, 0.7); line-height: 1.6; }
@media (max-width: 1200px) { .step-card { width: calc(33.33% - 20px); } }
@media (max-width: 768px) { .step-card { width: calc(50% - 20px); } .methodology-steps { justify-content: center; } }
@media (max-width: 560px) { .step-card { width: 100%; } }

/* CSS for section section:comparison */
.comparison-section { color: var(--color-text-white); text-align: center; }
.comparison-container { display: flex; flex-direction: column; align-items: center; }
.comparison-title { font-size: 45px; font-weight: 700; margin-bottom: 24px; }
.comparison-subtitle { font-size: 18.3px; color: rgba(2, 8, 23, 0.7); margin-bottom: 60px; max-width: 670px; }
.comparison-table { background-color: var(--color-bg-white); border: 1px solid var(--color-border); border-radius: 24px; overflow: hidden; width: 100%; max-width: 1152px; display: grid; grid-template-columns: 1fr 1fr 1fr; }
.table-header { background: linear-gradient(174deg, #3b82f6 0%, #06b6d4 548.46%); color: var(--color-text-white); padding: 40px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.table-header.col-standard { border-left: 1px solid rgba(255, 255, 255, 0.2); border-right: 1px solid rgba(255, 255, 255, 0.2); }
.table-header h3 { font-size: 19px; font-weight: 700; }
.table-row { display: contents; }
.table-cell { padding: 24px; border-bottom: 1px solid var(--color-border); color: var(--color-text-light); display: flex; align-items: center; gap: 12px; }
.table-cell.category-cell { justify-content: flex-start; color: var(--color-text-dark); font-weight: 600; font-size: 15.6px; }
.table-cell p { font-size: 15.3px; text-align: left; }
.table-row:nth-child(odd) .table-cell { background-color: rgba(241, 245, 249, 0.5); }
.table-row:last-child .table-cell { border-bottom: none; }
.table-cell:nth-child(3n+2) { border-left: 1px solid var(--color-border); border-right: 1px solid var(--color-border); }
@media (max-width: 768px) {
    .comparison-table { grid-template-columns: 1fr; }
    .table-header, .table-cell { grid-column: 1 / -1; }
    .table-header { flex-direction: row; }
    .table-cell:nth-child(3n+2) { border-left: none; border-right: none; }
    .table-row { border-bottom: 2px solid var(--color-primary); padding-bottom: 16px; margin-bottom: 16px; display: block; }
    .table-row .table-cell { border-bottom: 1px dashed var(--color-border); }
    .table-row .table-cell:last-child { border-bottom: none; }
}

/* CSS for section section:benefits */
.benefits-section { color: var(--color-text-white); text-align: center; }
.benefits-container { display: flex; flex-direction: column; align-items: center; }
.benefits-title { font-size: 28px; font-weight: 700; margin-bottom: 60px; color: #5c6269;}
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; width: 100%; max-width: 1152px; margin-bottom: 80px; }
.benefit-card { background-color: var(--color-bg-white); border: 1px solid var(--color-border); border-radius: 12px; padding: 24px; text-align: center; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 16px; }
.benefit-emoji { font-family: 'Noto Color Emoji', sans-serif; font-size: 36px; line-height: 1; }
.benefit-card h4 { color: var(--color-text-dark); font-size: 19px; font-weight: 700; }
.benefit-card p { color: var(--color-text-light); font-size: 15.25px; }
.impact-stats {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 896px;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 30px); /* mobilde iki tane yan yana */
    text-align: center;
  }
  
  /* Daha büyük ekranlarda 4'lü dizilmesi için */
  @media (min-width: 768px) {
    .stat-item {
      flex: 1 1 calc(25% - 30px);
    }
  }
  
.stat-number { font-size: 36px; font-weight: 700; display: block; margin-bottom: 8px; }
.stat-number.color-blue { color: var(--color-primary); }
.stat-number.color-purple { color: var(--color-secondary); }
.stat-number.color-cyan { color: var(--color-tertiary); }
.stat-label { font-size: 13.6px; color: var(--color-text-light); }

/* CSS for section section:mentors */
.mentors-section { background-color: var(--color-bg-white); text-align: center; }
.mentors-container { display: flex; flex-direction: column; align-items: center; }
.mentors-title-group { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.mentors-title { font-size: 44px; font-weight: 700; }
.mentors-subtitle { font-size: 18.4px; color: var(--color-text-light); margin-bottom: 60px; max-width: 690px; }
.mentors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; width: 100%; max-width: 1152px; margin-bottom: 80px; }
.mentor-card { background-color: var(--color-bg-white); border: 1px solid var(--color-border); border-radius: 12px; text-align: center; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px;}
.mentor-icon-wrapper { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; box-shadow: 0px 0px 20px 0px rgba(97, 166, 250, 0.3); }
.mentor-icon-wrapper.style-1 { background: linear-gradient(135deg, #61a6fa 0%, #a172f3 141.42%); }
.mentor-icon-wrapper.style-2 { background: linear-gradient(135deg, #a172f3 0%, #2eeaff 141.42%); }
.mentor-icon-wrapper.style-3 { background: linear-gradient(135deg, #2eeaff 0%, #61a6fa 141.42%); }
.mentor-card h3 { font-size: 19px; font-weight: 700; color: var(--color-text-dark); }
.mentor-specialty { font-size: 14px; font-weight: 600; color: var(--color-primary); }
.mentor-card p { font-size: 13.6px; color: var(--color-text-light); line-height: 1.6; flex-grow: 1; }
.mentor-link { font-size: 15.4px; font-weight: 500; color: var(--color-primary); margin-top: 16px; }
.mentor-stats-bar { display: flex; justify-content: space-around; align-items: flex-start; width: 100%; max-width: 896px; margin-bottom: 80px; flex-wrap: wrap; gap: 30px; }
.mentor-stat-item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.mentor-stat-number { font-size: 30px; font-weight: 700; color: var(--color-text-dark); }
.mentor-stat-label { font-size: 15.4px; color: var(--color-text-light); }
.mentors-cta-card { border: 1px solid var(--color-border); border-radius: 24px; padding: 40px; max-width: 514px; width: 100%; background-color: rgba(255, 255, 255, 0.8); backdrop-filter: blur(1px); }
.mentors-cta-card h3 { font-size: 22.8px; font-weight: 700; color: var(--color-text-dark); margin-bottom: 16px; }
.mentors-cta-card p { font-size: 15.25px; color: rgba(2, 8, 23, 0.7); line-height: 1.6; margin-bottom: 24px; }

/* CSS for section section:results */
.results-section { background-color: var(--color-bg-white); text-align: center; }
.results-container { display: flex; flex-direction: column; align-items: center; }
.results-title { font-size: 45px; font-weight: 700; margin-bottom: 24px; }
.results-subtitle { font-size: 18.3px; color: var(--color-text-light); margin-bottom: 60px; max-width: 675px; }
.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; width: 100%; max-width: 1152px; margin-bottom: 80px; }
.result-card { background-color: var(--color-bg-white); border: 1px solid var(--color-border); border-radius: 12px; padding: 32px 24px; text-align: center; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; align-items: center; gap: 16px; }
.result-icon-wrapper { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.result-icon-wrapper.style-blue { background-color: rgba(97, 166, 250, 0.1); }
.result-icon-wrapper.style-purple { background-color: rgba(161, 114, 243, 0.1); }
.result-icon-wrapper.style-cyan { background-color: rgba(46, 234, 255, 0.1); }
.result-percentage { font-size: 36px; font-weight: 700; color: var(--color-text-dark); }
.result-card h3 { font-size: 17.3px; font-weight: 700; color: var(--color-text-dark); }
.result-card p { font-size: 13.6px; color: var(--color-text-light); line-height: 1.6; }
.results-cta-card { border: 1px solid var(--color-border); border-radius: 24px; padding: 40px; max-width: 514px; width: 100%; background-color: rgba(255, 255, 255, 0.8); backdrop-filter: blur(1px); }
.results-cta-card .cta-icon { margin-bottom: 16px; }
.results-cta-card h3 { font-size: 22.7px; font-weight: 700; color: var(--color-text-dark); margin-bottom: 16px; }
.results-cta-card p { font-size: 15.25px; color: rgba(2, 8, 23, 0.7); line-height: 1.6; }

/* CSS for section section:footer */
.site-footer { background-color: var(--color-bg-white); border-top: 1px solid var(--color-border); padding-top: 60px; padding-bottom: 20px; }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col { text-align: left; }
.footer-about .logo { margin-bottom: 24px; }
.footer-description { font-size: 15.25px; color: var(--color-text-light); line-height: 1.7; margin-bottom: 24px; }
.footer-motto { font-size: 17.8px; font-weight: 700; color: var(--color-tertiary); }
.footer-heading { font-size: 19px; font-weight: 700; color: var(--color-text-dark); margin-bottom: 24px; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.footer-links a, .footer-contact span { font-size: 15.3px; color: var(--color-text-light); }
.footer-links a:hover { color: var(--color-primary); }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; }
.footer-newsletter-text { font-size: 15.25px; color: var(--color-text-light); line-height: 1.6; margin-bottom: 24px; }
.footer-newsletter-form { display: flex; flex-direction: column; gap: 16px; }
.footer-newsletter-form input { background-color: #f1f5f9; border: 1px solid var(--color-border); border-radius: 12px; padding: 16px 12px; font-size: 15.25px; }
.footer-newsletter-form .btn { border-radius: 12px; }
.footer-bottom { border-top: 1px solid var(--color-border); padding-top: 24px; padding-bottom: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-socials { display: flex; align-items: center; gap: 12px; }
.footer-socials span { font-size: 15.25px; color: var(--color-text-light); }
.social-link { width: 40px; height: 40px; background-color: #f8fafc; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.footer-legal { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-legal span, .footer-legal a { font-size: 13.7px; color: var(--color-text-light); }
.footer-legal a:hover { text-decoration: underline; }
.footer-final-bar { border-top: 1px solid rgba(226, 232, 240, 0.5); padding-top: 24px; margin-top: 24px; display: flex; justify-content: center; align-items: center; gap: 16px; }
.footer-final-bar span { font-size: 17.3px; font-weight: 600; color: var(--color-tertiary); text-align: center;}
@media (max-width: 768px) {
    .footer-bottom { flex-direction: column; gap: 24px; }
}
  .legal-links {
    display: flex;
    gap: 24px;
  }
  
  .legal-links a:hover {
    color: var(--color-text-primary);
  }