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

html{
    scroll-behavior:smooth;
}

section{
    scroll-margin-top:100px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color:#0B1B4D;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-icon {
    width: 44px;
    height: 44px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.logo-text {
    font-size: 21px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 0.8px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links li a:hover {
    color:rgba(255, 255, 255, 0.8);
}

.contact-btn {
    background-color: #1E88E5;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-btn:hover {
    background-color: #1565C0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .contact-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 12px 15px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: 18px;
    }
}

/* ==================================================
   HERO SECTION
================================================== */

.hero{

    position:relative;
    overflow:hidden;

    min-height: 670px;

    padding:80px 40px;

    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,.96) 0%,
            rgba(255,255,255,.90) 28%,
            rgba(255,255,255,.65) 52%,
            rgba(255,255,255,0) 75%
        ),
        linear-gradient(
            180deg,
            #FFFFFF 0%,
            #EEF6FF 55%,
            #DCEEFF 100%
        );
}

/* =========================
   Background
========================= */

.hero-background{

    position:absolute;
    inset:0;

    overflow:hidden;

    pointer-events:none;

    z-index:1;
}

.hero-panorama{

    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%, -50%);

    width:100%;
    height:100%;

    object-fit:cover;

    object-position:center center;

    opacity:.38;

    z-index:0;
}

/* =========================
   Content
========================= */

.hero-container{

    position:relative;

    z-index:1;

    max-width:1200px;

    margin:auto;
}

.hero-content{
    max-width:760px;
    margin:0 auto;
    text-align:center;

    padding-top:0;

    transform:translateY(-15px);
}
/* =========================
   Label
========================= */

.hero-label{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:22px;

    margin-bottom:28px;
}

.hero-label .line{

    width:110px;

    height:1px;

    background:#C7D7F7;
}

.hero-label .label-text{

    font-size:.82rem;

    letter-spacing:.22em;

    text-transform:uppercase;

    color:#2563EB;

    font-weight:700;
}

/* =========================
   Heading
========================= */

.hero-heading{

    font-size:4.4rem;

    line-height:1.08;

    font-weight:800;

    color:#0F172A;

    letter-spacing:-0.04em;

    margin-bottom:28px;
}

.hero-heading span{

    color:#2563EB;
}

/* =========================
   Paragraph
========================= */

.hero-text{

    max-width:720px;

    margin:0 auto;

    font-size:1.30rem;

    line-height:1.75;

    color:#475569;
}

/* =========================
   CTA
========================= */

.hero-cta{

    display:inline-flex;

    align-items:center;

    gap:14px;

    margin-top:48px;

    color:#2563EB;

    text-decoration:none;

    font-size:1.6rem;

    font-weight:700;

    transition:.3s;
}

.hero-cta:hover{

    transform:translateY(-2px);
}

.hero-cta:hover .cta-arrow{

    transform:translateY(4px);
}

.cta-arrow{

    transition:.3s;
}

/* =========================
   Responsive
========================= */

@media (max-width:900px){

    .hero{

        min-height:560px;

        padding:70px 25px;
    }

    .hero-heading{

        font-size:3.2rem;
    }

    .hero-text{

        font-size:1.1rem;
    }

    .hero-panorama{

        opacity:.25;
    }

}

@media (max-width:768px){

    .hero{

        min-height:500px;
    }

    .hero-heading{

        font-size:2.5rem;
    }

    .hero-text{

        font-size:1rem;
    }

    .hero-label .line{

        width:50px;
    }

    .hero-panorama{

        opacity:.15;
    }

}

/* ==========================================
   THE CHALLENGE
========================================== */

#challenge {
    scroll-margin-top: 40px;
}

.challenge-section{
    padding:40px 0 10px;
    background:#F8FAFC;
}

.challenge-grid{
    display:grid;
    grid-template-columns:36% 64%;
    gap:40px;
    align-items:center;
    max-width:1250px;
    margin:0 auto;
}

.challenge-left{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

/* ==========================================
   LEFT CONTENT
========================================== */

.challenge-left{
    max-width:500px;
}

.section-label{

    display:inline-block;
    margin-bottom:18px;
    font-size:18px;
    font-weight:700;
    letter-spacing:.18em;
    color:#2563EB;
    text-transform:uppercase;

}

.challenge-left h2{
    font-size:40px;
    line-height:1.15;
    color:#0B1B4D;
    margin-bottom:26px;
    font-weight:700;
    letter-spacing:-0.035em;
    max-width:520px;
}

.challenge-left p{

    font-size:17px;
    line-height:1.75;
    color:#475569;
}

.challenge-quote{

    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-top:34px;

}

.quote-line{

    width:5px;
    min-width:5px;
    height:120px;
    border-radius:999px;
    background:#2563EB;

}

.challenge-quote p{

    font-size:17px;
    line-height:1.85;
    color:#334155;
    font-style:italic;
}

/* ==========================================
   TIMELINE CARD
========================================== */

.timeline-card{

    background:#FFFFFF;
    border-radius:24px;
    border:1px solid #E2E8F0;
    padding:30px;
    box-shadow:
    0 16px 40px rgba(15,23,42,.07),
    0 4px 12px rgba(15,23,42,.03);
}

.timeline-card h3{

    text-align:center;
    color:#0B1B4D;
    font-size:24px;
    font-weight:700;
    line-height:1.25;
    margin-bottom:28px;
}

/* ==========================================
   TIMELINE
========================================== */

.timeline{

    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap: 12px;

}

.timeline-item{

    flex:1;
    text-align:center;

}

/* ==========================================
   IMAGES
========================================== */

.timeline-image{

    width:160px;
    height:160px;
    margin:0 auto 18px;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #E2E8F0;
    background:#FFFFFF;

}

.timeline-image img{

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

}

/* ==========================================
   STEP TITLES
========================================== */

.timeline-item h4{

    color:#0B1B4D;
    font-size:16px;
    font-weight:600;
    margin-bottom:6px;
    line-height:1;
}

.timeline-item span{

    font-size:14px;
    color:#64748B;
    line-height:1.4;

}

/* ==========================================
   ARROWS
========================================== */

.timeline-arrow{

    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:42px;
    flex-shrink:0;

}

.timeline-arrow svg{

    width:22px;
    height:22px;

}

/* ==========================================
   FOOTER
========================================== */

.timeline-footer{

    margin-top:34px;
    padding:18px 22px;
    background:#EFF6FF;
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:18px;

}

.footer-icon{

    width:44px;
    height:44px;
    border-radius:50%;
    background:#FFFFFF;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;

}

.footer-icon svg{

    width:20px;
    height:20px;

}

.timeline-footer p{

    font-size:16px;
    line-height:1.6;
    color:#1E3A8A;
    font-weight:500;
    margin:0;

}

/* ==========================================
   INDUSTRY STATISTICS
========================================== */

.stats-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:55px;

}

.stat-card{

    background:#FFFFFF;
    border:1px solid #E2E8F0;
    border-radius:20px;
    padding:14px 18px;
    display:flex;
    align-items:flex-start;
    gap:20px;
    box-shadow:0 12px 30px rgba(15,23,42,.05);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

}

.stat-card:hover{

    transform:translateY(-6px);

    border-color:#BFDBFE;

    box-shadow:0 20px 45px rgba(37,99,235,.12);

}

.stat-icon{

    width:54px;
    height:54px;

    border-radius:16px;

    background:#EFF6FF;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    flex-shrink:0;

}

.stat-content{

    flex:1;

}

.stat-content h3{

    margin:0 0 8px;

    font-size:34px;

    font-weight:700;

    color:#2563EB;

    line-height:1;

}

.stat-content p{

    margin:0 0 12px;

    font-size:16px;

    line-height:1.6;

    color:#334155;

}

.stat-content small{

    display:block;

    font-size:11px;

    font-weight:600;

    letter-spacing:.10em;

    text-transform:uppercase;

    color:#94A3B8;

}

/* ==========================================
   TABLET
========================================== */

@media (max-width:1100px){

    .challenge-grid{

        grid-template-columns:1fr;

        gap:45px;

    }

    .challenge-left{

        max-width:700px;

    }

    .timeline{

        gap:8px;

    }

    .timeline-image{

        width:100px;

        height:100px;

    }

    .timeline-item h4{

        font-size:16px;

    }

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:768px){

    .challenge-section{

        padding:55px 0;

    }

    .challenge-left h2{

        font-size:34px;

    }

    .challenge-left p{

        font-size:17px;

    }

    .timeline-card{

        padding:24px;

    }

    .timeline{

        flex-direction:column;

        align-items:center;

        gap:20px;

    }

    .timeline-arrow{

        transform:rotate(90deg);

        margin:0;

    }

    .timeline-image{

        width:120px;

        height:120px;

    }

    .timeline-footer{

        flex-direction:column;

        text-align:center;

    }

    .stats-grid{

        grid-template-columns:1fr;

        gap:20px;

    }

    .stat-card{

        padding:22px;

    }

}

/* ==========================================
   SMALL PHONES
========================================== */

@media (max-width:480px){

    .section-label{

        font-size:13px;

    }

    .challenge-left h2{

        font-size:30px;

    }

    .timeline-card h3{

        font-size:22px;

    }

    .timeline-image{

        width:105px;

        height:105px;

    }

    .stat-content h3{

        font-size:34px;

    }

}

#what-we-do {
    scroll-margin-top: 70px;
}

.what-we-do {
    padding: 50px 20px;
    background: #F8FBFF;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #1E293B;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #64748B;
}

.feature-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* =========================
   FEATURE CARDS
========================= */

.feature-card {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.15);
}


/* =========================
   CARD BACKGROUNDS
========================= */

.feature-card-green {
    background: linear-gradient(
        180deg,
        #FFFFFF 0%,
        #F1F8F4 100%
    );
}

.feature-card-amber {
    background: linear-gradient(
        180deg,
        #FFFFFF 0%,
        #FFF8EC 100%
    );
}

.feature-card-purple {
    background: linear-gradient(
        180deg,
        #FFFFFF 0%,
        #F7F3FC 100%
    );
}


/* =========================
   IMAGES
========================= */

.feature-image-wrapper {
    padding: 16px 16px 0;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transition: transform 0.45s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.03);
}


/* =========================
   CARD CONTENT
========================= */

.feature-content {
    flex: 1;
    padding: 28px 32px 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


/* =========================
   ICONS
========================= */

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-icon-green {
    background: #DDEFE5;
    color: #438A63;
}

.feature-icon-amber {
    background: #FCEAC8;
    color: #C48825;
}

.feature-icon-purple {
    background: #EAE0F5;
    color: #8156A7;
}


/* =========================
   CARD HEADINGS
========================= */

.feature-content h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    color: #1E293B;
}


/* =========================
   ACCENT LINES
========================= */

.feature-line {
    width: 54px;
    height: 4px;
    margin: 18px auto 20px;
    border-radius: 10px;
    transition: width 0.35s ease;
}

.feature-line-green {
    background: #438A63;
}

.feature-line-amber {
    background: #C48825;
}

.feature-line-purple {
    background: #8156A7;
}

.feature-card:hover .feature-line {
    width: 90px;
}


/* =========================
   CARD PARAGRAPHS
========================= */

.feature-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #64748B;
}


/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 900px) {

    .feature-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .feature-image {
        height: 260px;
    }
}

@media (max-width: 480px) {

    .feature-content {
        padding: 24px;
    }

    .feature-image {
        height: 200px;
    }

    .feature-content h3 {
        font-size: 20px;
    }
}

/* ==========================================
   HOW SOTERRA WORKS
========================================== */

.how-soterra-works {
    padding: 50px 20px;
    background: #F8FBFF;
}

.how-soterra-works .section-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.how-soterra-works .section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #0B1B4D;
    margin-bottom: 20px;
}

.how-soterra-works .section-header p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5F6B7A;
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   WORKFLOW TABS
========================================== */

.workflow-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.workflow-tab {
    padding: 16px 34px;
    font-size: 15px;
    font-weight: 600;
    color: #0B1B4D;

    border: 1px solid #D9E2EC;
    background: #ffffff;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.workflow-tab:hover {
    background: #F5F9FF;
    border-color: #0B1B4D;
}

.workflow-tab.active {
    background: #0B1B4D;
    color: #ffffff;
}

/* ==========================================
   WORKFLOW PANELS
========================================== */

.workflow-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.workflow-panel.active {
    display: block;
    animation: fadeInUp 0.45s ease forwards;
}

.workflow-showcase {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 70px;
    align-items: center;
    max-width: 1400px;
    margin: -15px auto 0;
    padding: 0 20px;
}

/* ==========================================
   SCREENSHOT SHOWCASE
========================================== */

.workflow-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 650px;
    transform: translateY(-20px);
    transition: transform 0.35s ease;
}

.workflow-images:hover {
    transform: translateY(-26px);
}

.main-screenshot {
    width: 100%;
    max-width: 850px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.overlay {
    position: absolute;
    width: 240px;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

.overlay-top {
    top: 40px;
    left: -40px;
}

.overlay-bottom {
    bottom: 40px;
    right: -30px;
}

/* ==========================================
   DESCRIPTION
========================================== */

.workflow-content h3 {
    font-size: 2.6rem;      
    font-weight: 700;
    line-height: 1.2;
    color: #0B1B4D;
    margin-bottom: 24px;
}

.workflow-content p {
    font-size: 1.15rem;    
    line-height: 1.9;
    color: #5F6B7A;
    max-width: 480px;
}

/* ==========================================
   ANIMATION
========================================== */

@keyframes fadeInUp {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

}

/* ===================================
   WORKFLOW CONTENT
=================================== */

.workflow-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.workflow-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #0B1B4D;
    margin-bottom: 18px;
}

.workflow-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5F6B7A;
    margin-bottom: 30px;
}

.workflow-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===========================
   FINAL CTA
=========================== */

.workflow-cta {

    max-width: 1400px;
    margin: 10px auto 0;

    padding: 55px 70px;

    background: linear-gradient(
        135deg,
        #0B1B4D,
        #102B73
    );

    border-radius: 32px;
    overflow: hidden;
}

.workflow-cta-content {

    display: grid;
    grid-template-columns: 1fr 620px;
    align-items: center;
    gap: 45px;
}

.workflow-cta-text {
    max-width: 520px;
}

.workflow-cta-text .workflow-label {
    display: inline-block;
    margin-bottom: 12px;

    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: rgba(255,255,255,.75);
}

.workflow-cta-text h2 {

    font-size: 2.8rem;
    color: white;
    line-height: 1.15;
    margin: 12px 0 22px;
}

.workflow-cta-text p {

    color: rgba(255,255,255,.85);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.workflow-btn {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 16px 34px;

    background: #FFFFFF;
    color: #0B1B4D;
    border: 2px solid transparent;

    border-radius: 999px;

    font-weight: 600;
    text-decoration: none;

    transition: .3s;
}

.workflow-btn:hover {
    background: #F5F7FF;
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0,0,0,.25);
}

.workflow-btn span {

    transition: .3s;
}

.workflow-btn:hover span {

    transform: translateX(6px);
}

.workflow-cta-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.workflow-cta-image img {

    width: 100%;
    max-width: 620px;

    border-radius: 24px;

    box-shadow: 0 30px 80px rgba(0,0,0,.35);

    transition: transform .35s ease,
                box-shadow .35s ease;
}

.workflow-cta-image img:hover {

    transform: scale(1.03);
    box-shadow: 0 35px 90px rgba(0,0,0,.40);
}

/* ==========================================
   WHY SOTERRA
========================================== */
#why-soterra {
    scroll-margin-top: 70px;
}

.why-soterra {
    padding: 60px 20px 80px;
}

.why-soterra .section-header {
    text-align: center;
    margin-bottom: 70px;
}

/* ==========================================
   BENEFITS
========================================== */

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 38px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.benefit-icon{
    width:56px;
    height:56px;
    border-radius:14px;
    background:#E8F8EE;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.benefit-icon i{
    font-size:28px;
}

/* Individual icon colours */

.benefit-icon.green i{
    color:#16A34A;
}

.benefit-icon.blue i{
    color:#2563EB;
}

.benefit-icon.orange i{
    color:#F59E0B;
}

.benefit-icon.purple i{
    color:#8B5CF6;
}

.benefit-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0B1B4D;
    margin-bottom: 10px;
}

.benefit-content p {
    color: #64748B;
    line-height: 1.8;
    font-size: 1rem;
    max-width: 720px;
}


/* ==========================================
   DIVIDER
========================================== */

.vision-divider {
    width: 100%;
    height: 1px;
    background: #E2E8F0;
    margin: 80px 0;
}

.our-vision {
    padding: 70px 20px 0px;
}

.our-vision .section-header {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.vision-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #5A6B85;
}
.vision-content{
    max-width:900px;
    margin:0 auto;
}

.vision-lead{
    font-size:1.3rem;
    line-height:1.8;
    color:#334155;
    font-weight:500;
    margin-bottom:25px;
}

.vision-description{
    font-size:1.15rem;
    line-height:1.9;
    color:#64748B;
    margin:0;
}

.vision-pillars{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    max-width:1100px;

    margin:auto;

}

.pillar{

    background:white;

    border-radius:20px;

    padding:35px 30px;

    text-align:center;

    border:1px solid #E5E7EB;

    transition:.3s;

    box-shadow:0 6px 18px rgba(0,0,0,.05);

}

.pillar:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.pillar i{

    font-size:30px;

    color:#2563EB;

    margin-bottom:18px;

}

.pillar h4{

    font-size:1.2rem;

    margin-bottom:12px;

    color:#0F172A;

    font-weight:600;

}

.pillar p{

    color:#64748B;

    line-height:1.7;

    margin:0;

}

@media (max-width:900px){

    .vision-pillars{

        grid-template-columns:1fr 1fr;

    }

}

@media (max-width:650px){

    .vision-pillars{

        grid-template-columns:1fr;

    }
}
/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 768px) {

    .why-soterra {
        padding: 80px 20px;
    }

    .why-soterra h2 {
        font-size: 2rem;
    }

    .benefit-item {
        gap: 18px;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .vision-item {
        align-items: flex-start;
    }

}

.contact-section {
    padding: 40px 20px 50px;
    background: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.contact-divider {
    width: 1px;
    height: 140px;
    background: #D9E3F3;
}

.contact-icon {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #F3F6FB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #2563EB;
    flex-shrink: 0;
}

.contact-content {
    flex: 1;
    text-align: left;
    padding-left: 24px;
}

.contact-content h2 {
    font-size: 2.8rem;
    color: #1E293B;
    margin-bottom: 16px;
}

.contact-content p {
    max-width: 520px;
    margin: 0 0 20px;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #64748B;
}

.contact-content a {
    color: #2563EB;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-content a:hover {
    text-decoration: underline;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.email-icon {
    color: #2563EB;
    font-size: 1.2rem;
}

.contact-email a {
    color: #2563EB;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer {
    background: #0B1B4D;
    color: white;
    padding: 16px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-logo span {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 1rem;
}

.footer-nav a:hover {
    color: white;
}

.footer-copy {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}