 :root {

    --bg: #050505;
    --card-bg: #0f1115;
    --accent: #ffffff;

    --text-p: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --decor-color: #6366f1;
    --decor-color: #de375c;
    
    --page-max-width: 1300px;
    --page-padding-x: 2.5rem;
    --page-padding-y: 50px;

}


* {
    margin: 0;
    padding: 0;
}

/* Smooth Scroll */
html { scroll-behavior: smooth; }



body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: white;
    
    -webkit-font-smoothing: antialiased;
    font-family: Inter;
}

main {
    max-width: var(--page-max-width);
    margin: 0 auto;
    
}

section { 
    padding: var(--page-padding-y) var(--page-padding-x);
}


section:first-of-type {

    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.4;
    margin-top: var(--header-height);
    
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    

    display: flex;
    gap: 65px;

    box-sizing: border-box;
    height: auto;
    min-height: calc(100vh - var(--header-height));

    
    
}

section:first-of-type p { 
    color: #64748b;
    font-size: 20px;
}

h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    margin: 0;
}

h1 span {
    color: #e11d48;
}



section:first-of-type p {

    
    max-width: 500px;
    margin-top: 2rem;
    margin-bottom: 0;

}


section:first-of-type img { 

    width: 50%;
    object-fit: cover;
    border-radius: 4px;
    max-width: 564px;

}

section:first-of-type > div {
    
    width: 41%;
    max-width: 472px;

}



.section-tag {
  color: var(--decor-color);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 1.4rem;
  display: block;
  font-size: 14px;
}







/* Decorative Background Glows */
.glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(5, 5, 5, 0) 70%);
    z-index: -1;
    top: -100px;
    right: -100px;
}


h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 1.5rem; line-height: 1.15; max-width: 712px;}
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--accent); }
p { 
    color: var(--text-p); 
    font-size: 19px; 
    line-height: 26px; 
    
}

/* Sections */


section.services > h2, section.services > p {
    margin: auto;
    text-align: center;
}

section.services p {
    margin-top: 20px;
   
}

section.why {
    --page-padding-y: 92px;
    display: flex;
    gap: 125px;
    
}

section.why > div:last-of-type {
    
    width: 515px;
}

section.summary {
    border: none;
}

/* Hero */
.hero {
    padding-top: 160px;
    text-align: center;
    background: radial-gradient(circle at center, #111 0%, #050505 100%);
}



/* Focus Section */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 67px;
}

.focus-item {
    background: #1c1c28a8;
    padding: 1.5rem;
    border-radius: 12px;
   
    text-align: center;
    font-weight: 600;
}

.focus-item a {
    text-decoration: none;
    color: #00dbff;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
}

.service-card {
    padding: 3rem;
    background: linear-gradient(145deg, #0f1115 0%, #050505 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-card p  {
    
    line-height: 25px;
    font-size: 18px;

}

.service-card:hover {
    border-color: var(--decor-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-card .number {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--decor-color);
    margin-bottom: 1rem;
    display: block;
}

/* Feature Image */
.feature-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 32px;
    margin: 4rem 0;
    margin-bottom: 0px;
    border: 1px solid var(--border);
}

/* Lists */
.why-list {
    list-style: none;
    margin-top: 2rem;
}

.why-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    font-weight: 500;
}

.why-list li::before {
    content: "→";
    margin-right: 15px;
    color: var(--decor-color);
}

/* Footer CTA */
.summary-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #e11d48;
    color: white;
    border-radius: 40px;
    padding: 80px 40px;
    margin-bottom: 80px;
}

.summary-cta h2, .summary-cta p { color: white; max-width: 650px;}

.btn {
    display: inline-block;
    background: white;
    color: black;
    padding: 1.2rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 2.5rem;
    transition: transform 0.2s ease;
}

.btn:hover { transform: scale(1.05); }



body > header.dark-mode {
    top: 0;
    position: fixed;
}

body > header.dark-mode .nav-cta {
  border-radius: 4px;
  font-size: 14px;
  
  background: #ff0557;
  color: white;
  font-family: inherit;
  text-transform: none;
}


body > footer .footer-logo span {
  color: #f0004f !important;
  font-weight: 600;
}

body > footer .contact-item i {
  color: #f0004fe0 !important;

}

body > footer .brand-col p {
    color: #575757;
}


body > footer.dark-mode .footer-logo { 
    font-weight: 600 !important;
}

body > footer.dark-mode {
    border: none;
    
}

body > footer {
    background: #fafafa !important;
}


@media (max-width: 980px) { 

    section:first-of-type {
       flex-direction: column;
       justify-content: flex-start;
       gap: 35px;

    }

    section:first-of-type h1 {
        margin-top: 25px;
        
    }

    section:first-of-type p {
        font-size: 19px;
    }

    section:first-of-type img { 
        max-width: 100%;
        width: 100%;
    }

    section:first-of-type > div { 
        max-width: 100%;
        width: 100%;
        
    }

    .summary p {
        font-size: 18px;
        
    }

}

@media (max-width: 850px) { 
    section.why {
        --page-padding-y: 50px;
        flex-direction: column;
        gap: 20px;
    }

    section.why > div:last-of-type {
        width: 100%;
    }

    .summary {
        padding: 0px;
        
    }

    .summary .summary-cta {
        padding: 75px var(--page-padding-x);
        border-radius: 0px;
        margin: 0px;
    }
}

@media (max-width: 768px) {

    :root {
        --page-padding-y: 28px;
    }

    .services-grid { grid-template-columns: 1fr; }
   
}


@media (max-width: 650px) {
    :root {
         --page-padding-x: 20px;
    }

    .services-grid .service-card {
        padding: 0;
        border: none;
        background: none;
    }

    .services-grid {
        gap: 42px;
    }

    .feature-img {
        height: 61vw;
    }
}