/* ==========================================
   STEPITIVE — MAIN STYLESHEET
   Cleaned & deduplicated build
   - Works together with responsive.css and animations.css
   - Removed rules for elements no longer in index.html
   - Merged duplicate selector blocks
   - Single-owning-side section spacing (top-padding only)
   ========================================== */

:root {
    --dark: #0B0F1A;
    --dark-2: #10162A;
    --white: #F5F7FA;
    --text-muted: #94A3B8;
    --primary: #2563EB;
    --primary-light: #3B82F6;
    --primary-dark: #1D4ED8;
    --panel: rgba(255,255,255,.03);
    --border: rgba(255,255,255,.08);
    --font-body: "Inter",sans-serif;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --container-width: 1200px;
    --section-space: 70px;
    --gap-sm: 40px;
    --hero-space-top: 90px;
    --hero-space-bottom: 40px;
    --content-gap: 48px;
    --card-padding: 32px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font: inherit;
    border: none;
    outline: none;
    background: none;
    color: inherit;
    cursor: pointer;
}

.container {
    width: min(var(--container-width),100% - 48px);
    margin-inline: auto;
}

/* ----------------------------------------------------
   SECTION SPACING SYSTEM
   Every section owns its OWN top padding only.
   Bottom padding stays 0 by default so two stacked
   sections never add their gaps together.
   Only the very first section (hero) and the final
   CTA (which needs breathing room before the footer)
   get an explicit bottom value.
---------------------------------------------------- */
section {
    padding-bottom: 0;
    padding-top: 0;

}

section:first-of-type {
    padding-top: var(--hero-space-top);
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    padding: 10px 18px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: .25s;
    z-index: 9999;
}

.skip-link:focus {
    top: 16px;
}

a:focus-visible, button:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 3px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    font-size: .95rem;
    font-weight: 600;
    transition: .3s;
}

.btn--primary {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 8px 20px rgba(37,99,235,.25);
}

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37,99,235,.4);
}

.btn--secondary {
    border: 1px solid var(--border);
    color: var(--white);
}

.btn--secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(11,15,26,.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.navbar {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo__image {
    width: 200px;
    height: auto;
    animation: logoFloat 4s ease-in-out infinite;
    transition: .35s;
    filter: drop-shadow(0 0 8px rgba(37,99,235,.35)) drop-shadow(0 0 20px rgba(37,99,235,.18));
}

.logo:hover .logo__image {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(59,130,246,.55)) drop-shadow(0 0 30px rgba(59,130,246,.25));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 42px;
    margin-left: auto;
}

.nav-link {
    position: relative;
    color: var(--text-muted);
    font-size: .96rem;
    font-weight: 500;
    padding: 10px 2px;
    transition: .3s;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: .3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #fff;
}

.nav-link.active::after {
    width: 100%;
    background: var(--primary);
}

.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    margin-left: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 8px;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: .3s;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    padding-block: var(--hero-space-top) var(--hero-space-bottom);
}

.hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -140px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(37,99,235,.18), transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at top, black 35%, transparent 85%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--content-gap);
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 8px 18px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(37,99,235,.10);
    border: 1px solid rgba(37,99,235,.25);
    color: var(--primary-light);
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__title {
    margin-bottom: 24px;
    font-size: clamp(2.4rem,5vw,3.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
}

.hero__description {
    max-width: 580px;
    margin-bottom: 36px;
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 40px;
}

.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image img {
    width: 100%;
    max-width: 620px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 55px rgba(37,99,235,.25));
}

.solution-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: .35s;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: rgba(37,99,235,.40);
    box-shadow: 0 25px 50px rgba(0,0,0,.35);
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card .card-icon {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    border-radius: 18px;
    font-size: 32px;
    color: var(--primary-light);
    background: rgba(37,99,235,.10);
    border: 1px solid rgba(37,99,235,.22);
    transition: .35s;
}

.solution-card:hover .card-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.08) rotate(-6deg);
}

.solution-card h3 {
    margin-bottom: 18px;
    font-size: 1.45rem;
    line-height: 1.3;
}

.solution-card p {
    margin-bottom: 28px;
    color: var(--text-muted);
    line-height: 1.8;
}

.solution-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-light);
    font-weight: 600;
    transition: .3s;
}

.solution-link i {
    transition: .3s;
}

.solution-card:hover .solution-link {
    color: #fff;
}

.solution-card:hover .solution-link i {
    transform: translateX(6px);
}

.capabilities {
    position: relative;
    overflow: hidden;
    background: transparent;
}

.capabilities::before {
    content: "";
    position: absolute;
    right: -140px;
    top: -140px;
    width: 900px;
    height: 420px;
    background: radial-gradient(circle, rgba(37,99,235,.18), transparent 70%);
    pointer-events: none;
    left: 50%;
    transform: translateX(-50%);
}

.card-icon {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    flex-shrink: 0;
    background: rgba(37,99,235,.10);
    border: 1px solid rgba(37,99,235,.22);
    color: var(--primary-light);
    transition: .35s;
}

.card-icon i {
    font-size: 18px;
}

.fi {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.card-icon .fi {
    font-size: inherit;
}

.about-hero {
    position: relative;
    padding: var(--hero-space-top) 0 var(--hero-space-bottom);
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -120px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(37,99,235,.16), transparent 72%);
    pointer-events: none;
}

.about-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--content-gap);
}

.about-hero .hero__content {
    flex: 1;
}

.about-hero .hero__tag {
    margin-bottom: 22px;
}

.about-hero .hero__title {
    max-width: 640px;
    margin-bottom: 22px;
}

.about-hero .hero__description {
    max-width: 560px;
    color: var(--text-muted);
}

.about-hero .hero__image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.about-hero .hero__image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 28px 55px rgba(37,99,235,.25));
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.leadership {
    background: var(--dark);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 36px;
}

.leader-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 45px 35px;
    text-align: center;
    transition: .35s;
}

.leader-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37,99,235,.45);
    box-shadow: 0 20px 45px rgba(0,0,0,.30);
}

.leader-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 28px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(37,99,235,.25);
    box-shadow: 0 0 35px rgba(37,99,235,.18);
    position: relative;
}

.leader-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .3s ease;
}

.leader-card:first-child .leader-image img {
    object-position: center center;
    transform: scale(1.03);
}

.leader-card:last-child .leader-image img {
    object-position: center center;
    transform: scale(1.12);
}

.leader-card h3 {
    font-size: 1.7rem;
    margin-bottom: 8px;
}

.leader-role {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.leader-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.leader-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    transition: .3s;
}

.leader-link:hover {
    transform: translateY(-3px);
    background: var(--primary-light);
}

.leader-link i {
    font-size: 1.15rem;
}

.services-hero {
    position: relative;
    overflow: hidden;
    padding-top: var(--gap-sm);
}

.services-hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient( circle, rgba(37,99,235,.18), transparent 70% );
    pointer-events: none;
}

.services-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.services-hero h1 {
    font-size: clamp(2.2rem,4vw,3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.services-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.services-intro {
    padding-top: 60px;
}

.services-intro-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.services-text {
    flex: 1;
}

.services-text h2 {
    font-size: clamp(2rem,3vw,2.8rem);
    margin-bottom: 20px;
}

.services-text p {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 1.05rem;
}

.services-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.services-image img {
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.services-details {
    padding-top: 40px;
}

.service-block {
    position: relative;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 48px;
    align-items: center;
    padding: 40px;
    margin-bottom: 32px;
    background: linear-gradient( 160deg, rgba(255,255,255,.045), rgba(255,255,255,.02) );
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    backdrop-filter: blur(15px);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block:hover {
    transform: translateY(-8px);
    border-color: rgba(37,99,235,.45);
    box-shadow: 0 20px 45px rgba(0,0,0,.35);
}

.service-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: rgba(37,99,235,.12);
    border: 1px solid rgba(37,99,235,.35);
    color: var(--primary-light);
    font-size: 40px;
    transition: .35s ease;
}

.service-block:hover .service-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.08) rotate(-5deg);
}

.service-block h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.service-block p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 760px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2,minmax(220px,1fr));
    gap: 14px 24px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: .95rem;
}

.service-list li i {
    color: var(--primary-light);
    flex-shrink: 0;
}

.contact-hero {
    position: relative;
    padding: var(--hero-space-top) 0 var(--hero-space-bottom);
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -120px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(37,99,235,.16), transparent 72%);
    pointer-events: none;
}

.contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at top, black 25%, transparent 80%);
    pointer-events: none;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    text-align: center;
}

.contact-hero__content {
    max-width: 840px;
}

.contact-hero .hero__tag {
    margin-bottom: 24px;
}

.contact-hero .hero__title {
    margin-bottom: 24px;
}

.contact-hero .hero__description {
    max-width: 720px;
    margin: 0 auto 42px;
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.project-form {
    position: relative;
    padding-top: var(--gap-sm);
    padding-bottom: 120px;

}

.project-form::before {
    content: "";
    position: absolute;
    top: -220px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 520px;
    background: radial-gradient( circle, rgba(37,99,235,.12), transparent 72% );
    pointer-events: none;
}

.project-form::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(circle at center, black 25%, transparent 85%);
    pointer-events: none;
}

.form-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 42px;
    align-items: start;
}

.form-intro:hover {
    border-color: rgba(59,130,246,.45);
    transform: translateY(-4px);
}

.form-intro h2 {
    font-size: 2rem;
    line-height: 1.25;
    margin: 18px 0;
}

.form-intro p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 34px;
}

.form-highlights {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.05);
    transition: .3s ease;
}

.highlight-item:hover {
    background: rgba(37,99,235,.08);
    border-color: rgba(37,99,235,.25);
    transform: translateX(5px);
}

.highlight-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(37,99,235,.14);
    color: var(--primary-light);
    font-size: 16px;
    flex-shrink: 0;
}

.highlight-item span {
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-form {
    padding: 46px;
    border-radius: 24px;
    background: linear-gradient( 165deg, rgba(255,255,255,.04), rgba(255,255,255,.02) );
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 45px rgba(0,0,0,.28);
}

.form-section {
    margin-bottom: 48px;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.full-width {
    grid-column: 1/-1;
}

.form-group label {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: .94rem;
    color: var(--white);
    letter-spacing: .2px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 16px 18px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    color: var(--white);
    font-size: .95rem;
    font-family: inherit;
    transition: border-color .3s ease, box-shadow .3s ease, background .3s ease, transform .3s ease;
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(148,163,184,.75);
    transition: opacity .3s ease;
}

.form-group input:focus::placeholder, .form-group textarea:focus::placeholder {
    opacity: .45;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-color: rgba(255,255,255,.035);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 6L8 10.5L12.5 6' stroke='%2394A3B8' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 52px;
}

.form-group select option {
    background: #10162A;
    color: #F5F7FA;
}

.form-group textarea {
    resize: vertical;
    min-height: 190px;
    line-height: 1.8;
}

.form-group input:hover, .form-group select:hover, .form-group textarea:hover {
    border-color: rgba(59,130,246,.45);
    background: rgba(255,255,255,.05);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(37,99,235,.08);
    transform: translateY(-2px);
    box-shadow: 0 0 0 4px rgba(37,99,235,.14), 0 8px 20px rgba(37,99,235,.15);
}

.form-group label::after {
    content: "";
}

.form-group label[for="fullname"]::after, .form-group label[for="email"]::after, .form-group label[for="service"]::after, .form-group label[for="message"]::after {
    content: " *";
    color: #EF4444;
    font-weight: 700;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 10px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 22px;
    border-radius: 16px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    cursor: pointer;
    transition: transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
}

.radio-item:hover {
    transform: translateY(-3px);
    background: rgba(37,99,235,.08);
    border-color: rgba(59,130,246,.35);
    box-shadow: 0 10px 20px rgba(0,0,0,.18);
}

.radio-item input {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.28);
    position: relative;
    transition: .25s ease;
}

.radio-item input:hover {
    border-color: var(--primary);
}

.radio-item input:checked {
    border-color: var(--primary);
}

.radio-item input:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    transform: translate(-50%,-50%);
}

.form-message {
    display: none;
    position: relative;
    margin-top: 26px;
    padding: 18px 22px 18px 60px;
    border-radius: 16px;
    font-weight: 600;
    line-height: 1.7;
    overflow: hidden;
    animation: fadeUp .4s ease;
}

.form-message::before {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
}

.form-message.success {
    display: block;
    background: linear-gradient( 135deg, rgba(34,197,94,.14), rgba(34,197,94,.05) );
    border: 1px solid rgba(34,197,94,.35);
    color: #86EFAC;
}

.form-message.success::before {
    content: "✓";
    background: #22C55E;
    color: #fff;
}

.form-message.error {
    display: block;
    background: linear-gradient( 135deg, rgba(239,68,68,.14), rgba(239,68,68,.05) );
    border: 1px solid rgba(239,68,68,.35);
    color: #FCA5A5;
}

.form-message.error::before {
    content: "!";
    background: #EF4444;
    color: #fff;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-stepitive {
    position: relative;
    padding-top: var(--gap-sm);
    overflow: hidden;
}

.why-stepitive::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -220px;
    transform: translateX(-50%);
    width: 1000px;
    height: 520px;
    background: radial-gradient( circle, rgba(37,99,235,.13), transparent 72% );
    pointer-events: none;
}

.why-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 28px;
}

.why-card {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 42px 30px;
    border-radius: 24px;
    background: linear-gradient( 165deg, rgba(37,99,235,.06), rgba(255,255,255,.03) );
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
    animation: whyFloat 8s ease-in-out infinite;
}

.why-card:nth-child(2) {
    animation-delay: .5s;
}

.why-card:nth-child(3) {
    animation-delay: 1s;
}

.why-card:nth-child(4) {
    animation-delay: 1.5s;
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient( 90deg, var(--primary), var(--primary-light) );
    transform: scaleX(0);
    transition: .35s;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59,130,246,.35);
    box-shadow: 0 24px 50px rgba(0,0,0,.30);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(37,99,235,.12);
    border: 1px solid rgba(37,99,235,.30);
    color: var(--primary-light);
    font-size: 32px;
    transition: .35s ease;
}

.why-card:hover .why-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.08) rotate(-5deg);
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.why-card p {
    color: var(--text-muted);
    line-height: 1.85;
}

@keyframes whyFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

main {
    flex: 1;
    overflow: hidden;
}

main section {
    position: relative;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 65px;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(2rem,3vw,2.8rem);
    margin: 18px 0;
    margin-bottom: 18px;
    line-height: 1.2;
}

.section-heading p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.03rem;
    max-width: 700px;
    margin: auto;
}

.section-label {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--primary-light);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

p {
    max-width: 100%;
}

.hero__description, .form-intro p, .solution-card p {
    max-width: 65ch;
}

.form-intro {
    position: sticky;
    top: 110px;
    padding: 40px;
    border-radius: 24px;
    background: linear-gradient( 165deg, rgba(37,99,235,.08), rgba(255,255,255,.03) );
    border: 1px solid rgba(59,130,246,.22);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 45px rgba(0,0,0,.25);
    transition: .35s ease;
    max-width: 640px;
}

.solutions-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 32px;
    align-items: stretch;
}

.solution-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 360px;
    padding: 36px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
    border: 1px solid var(--border);
    backdrop-filter: blur(14px);
    transition: transform .35s, border-color .35s, box-shadow .35s;
    height: 100%;
}

h1, h2, h3, h4 {
    line-height: 1.2;
}

p + p {
    margin-top: 16px;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.footer {
    margin-top: auto;
    padding: 70px 0 35px;
    background: rgba(11,15,26,.92);
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 45px;
}

.footer-contact-grid {
    max-width: 900px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 220px;
    row-gap: 48px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
    font-size: 1rem;
}

.footer-contact-item i {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: rgba(37,99,235,.12);
    color: var(--primary);
    flex-shrink: 0;
}

.footer-contact-grid > :nth-child(even) {
    margin-left: 120px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.08);
    margin-bottom: 24px;
}

.footer-copyright {
    text-align: center;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width:768px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr;
        row-gap: 24px;
        column-gap: 0;
        margin-bottom: 35px;
    }

    .footer-contact-grid > :nth-child(even) {
        margin-left: 0;
    }

    .footer-contact-item {
        justify-content: flex-start;
        width: 100%;
    }

    .footer-contact-item span {
        word-break: break-word;
    }

    .leadership {
        background: var(--dark);
        padding-bottom: 40px;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .leader-card {
        padding: 36px 26px;
    }

    .leader-image {
        width: 150px;
        height: 150px;
    }

    .leader-card:first-child .leader-image img {
        transform: scale(1.05);
    }

    .leader-card:last-child .leader-image img {
        transform: scale(1.15);
    }

    .section-heading h2 {
        font-size: 2rem;
    }

}
/* ==========================================
   STEPITIVE — THANK YOU PAGE STYLESHEET
   ========================================== */

.thank-you-page {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
}

.thank-you-box {
    max-width: 700px;
    width: 100%;
    margin: auto;
    padding: 60px 50px;
    text-align: center;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.thank-you-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(37,99,235,.12);
    color: var(--primary);
    font-size: 2.8rem;
    font-weight: 700;
}

.thank-you-box h1 {
    font-size: clamp(2.3rem,4vw,3.4rem);
    margin-bottom: 20px;
}

.thank-you-box p {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 18px;
    line-height: 1.8;
}

.thank-you-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.thank-you-buttons .btn {
    min-width: 220px;
}

@media (max-width: 768px) {
    .thank-you-page {
        padding: 90px 0 60px;
    }

    .thank-you-box {
        padding: 40px 25px;
    }

    .thank-you-icon {
        width: 75px;
        height: 75px;
        font-size: 2.2rem;
    }

    .thank-you-box h1 {
        font-size: 2rem;
    }

    .thank-you-buttons {
        flex-direction: column;
        align-items: center;
    }

    .thank-you-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}



