*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 0;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #ffffff;
    color: #0a0a0a;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.navbar {
    width: 100%;
    background-color: #ffffff;
    padding: 20px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #0a0a0a;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.3px;
}

.logo-icon {
    width: 24px;
    height: 24px;
    color: #0a0a0a;
    stroke-width: 1.75;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 48px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #0a0a0a;
    font-size: 15px;
    font-weight: 400;
    transition: opacity 0.2s ease;
    cursor: pointer;
    padding: 10px 0;
}

.nav-link:hover {
    opacity: 0.6;
}

.dropdown-icon {
    width: 14px;
    height: 14px;
    stroke-width: 1.75;
    transition: transform 0.25s ease;
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 8px);
    min-width: 260px;
    background: #ffffff;
    border: 1px solid rgba(10, 10, 10, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    list-style: none;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 50;
}

.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-dropdown-link {
    display: block;
    padding: 12px 22px;
    font-size: 14px;
    color: #0a0a0a;
    cursor: pointer;
    transition: background-color 0.15s ease, padding-left 0.15s ease;
}

.nav-dropdown-link:hover {
    background-color: #f4f4f4;
    padding-left: 28px;
}

.cta-button {
    display: inline-block;
    cursor: pointer;
    background-color: #0a0a0a;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    padding: 12px 26px;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: #2a2a2a;
}


.hero {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 0 32px 50px 32px;
    box-sizing: border-box;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    min-height: calc(100vh - 120px);
    width: 100%;
}

.hero-content {
    position: relative;
    padding: 60px 120px;
    display: flex;
    flex-direction: column;
    background: #0a0a0a;
    overflow: hidden;
}

.hero-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-conic-gradient(
            from 0deg at 50% 130%,
            rgba(255, 255, 255, 0.06) 0deg 0.2deg,
            transparent 0.2deg 5deg
        );
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to top, #000 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    mask-image: linear-gradient(to top, #000 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

.hero-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 28px;
    letter-spacing: 0.2px;
}

.hero-badge i {
    width: 14px;
    height: 14px;
    stroke-width: 1.75;
}

.hero-title {
    font-size: 54px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
    max-width: 480px;
    font-weight: 400;
}

.hero-cta {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    color: #0a0a0a;
    padding: 14px 22px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.hero-cta:hover {
    opacity: 0.88;
}

.hero-cta i {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 620px;
    width: 100%;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 8px;
    color: #ffffff;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 400;
}

.hero-image {
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
    min-height: 0;
}

.hero-image > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.trusted-card {
    position: absolute;
    bottom: 36px;
    right: 36px;
    background: rgba(15, 15, 15, 0.42);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 12px 40px rgba(0, 0, 0, 0.35);
    padding: 22px 26px;
    color: #ffffff;
    min-width: 340px;
    z-index: 3;
}

.trusted-head {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trusted-title {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: -0.2px;
    line-height: 1.2;
}

.trusted-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.1px;
}

.trusted-divider {
    height: 1px;
    margin: 16px 0;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.28) 50%,
        rgba(255, 255, 255, 0.04) 100%);
}

.trusted-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.trusted-avatars {
    display: flex;
}

.trusted-avatars img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border: 2px solid rgba(15, 15, 15, 0.85);
    margin-right: -12px;
    display: block;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.trusted-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.trusted-rating .trusted-score-label {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    margin-left: 2px;
}

.trusted-star {
    width: 16px;
    height: 16px;
    color: #fbbf24;
    fill: #fbbf24;
    stroke-width: 0;
    margin-right: 2px;
}


.about {
    background: #ffffff;
    padding: 140px 32px;
}

.about-container {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: stretch;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #0a0a0a;
    font-weight: 400;
    letter-spacing: 0.1px;
}

.about-bullet {
    width: 8px;
    height: 8px;
    background: #0a0a0a;
    display: inline-block;
}

.about-left img {
    width: 100%;
    max-width: 320px;
    height: 440px;
    object-fit: cover;
    display: block;
}

.about-right {
    display: flex;
    flex-direction: column;
}

.about-title {
    font-size: 44px;
    font-weight: 400;
    line-height: 1.25;
    color: #0a0a0a;
    letter-spacing: -1px;
    margin-bottom: 50px;
}

.reveal-words .rw {
    color: rgba(10, 10, 10, 0.22);
    transition: color 0.35s ease;
}

.reveal-words .rw.on {
    color: #0a0a0a;
}

.about-link {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: rgba(10, 10, 10, 0.6);
    font-size: 22px;
    font-weight: 400;
    padding: 24px 0;
    border-bottom: 1px solid rgba(10, 10, 10, 0.18);
    margin-top: auto;
    transition: color 0.2s ease;
}

.about-link:hover {
    color: #0a0a0a;
}

.about-link i {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}


.video {
    background: #ffffff;
    padding: 20px 32px 120px 32px;
}

.video-container {
    max-width: 1300px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 2.2 / 1;
    overflow: hidden;
    background: #0a0a0a;
    cursor: pointer;
}

.video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.video-wrapper:hover img {
    transform: scale(1.04);
}

.video-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.32);
    z-index: 1;
    transition: background 0.4s ease;
}

.video-wrapper:hover::after {
    background: rgba(0, 0, 0, 0.45);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 2;
    cursor: pointer;
    transition: transform 0.35s ease;
}

.video-wrapper:hover .video-play {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-ring {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    pointer-events: none;
    animation: video-pulse 2s ease-out infinite;
}

.video-ring.ring-2 {
    animation-delay: 1s;
}

.video-ring.ring-3 {
    display: none;
}

@keyframes video-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

.video-play i {
    width: 26px;
    height: 26px;
    color: #0a0a0a;
    fill: #0a0a0a;
    stroke-width: 0;
    margin-left: 3px;
}


.services {
    background: #ffffff;
    padding: 0 0 140px 0;
}

.services-container {
    width: 100%;
    background: #0d0d0d;
    padding: 90px 70px 100px 70px;
}

.services-inner {
    max-width: 1440px;
    margin: 0 auto;
}

.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 60px;
}

.services-title {
    font-size: 56px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: #ffffff;
    max-width: 560px;
}

.services-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    white-space: nowrap;
    padding-bottom: 8px;
}

.services-bullet {
    width: 7px;
    height: 7px;
    background: #ffffff;
    display: inline-block;
}

.services-list {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.service-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.service-head {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
    background: none;
    border: none;
    padding: 34px 0;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    color: #ffffff;
}

.service-number {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    min-width: 44px;
}

.service-name {
    font-size: 26px;
    font-weight: 400;
    letter-spacing: -0.4px;
    color: #ffffff;
    flex: 1;
    transition: opacity 0.2s ease;
}

.service-head:hover .service-name {
    opacity: 0.7;
}

.service-arrow i {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
    color: #ffffff;
    display: block;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.service-item.active .service-arrow i {
    opacity: 0;
    transform: translateX(10px);
}

.service-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s ease;
}

.service-item.active .service-body {
    grid-template-rows: 1fr;
}

.service-body-inner {
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-item.active .service-body-inner {
    padding-bottom: 44px;
}

.service-info {
    padding-left: 84px;
    max-width: 480px;
}

.service-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.service-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.service-points li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #ffffff;
    flex-shrink: 0;
}

.service-media {
    position: relative;
    overflow: hidden;
}

.service-media img {
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    display: block;
}

.service-media-link {
    cursor: pointer;
    position: absolute;
    right: 18px;
    bottom: 18px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-media-link i {
    width: 30px;
    height: 30px;
    stroke-width: 1.75;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
    transition: transform 0.2s ease;
}

.service-media-link:hover i {
    transform: translate(2px, -2px);
}


.team {
    background: #ffffff;
    padding: 0 32px 140px 32px;
}

.team-container {
    max-width: 1300px;
    margin: 0 auto;
}

.team-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(10, 10, 10, 0.15);
    margin-bottom: 50px;
}

.team-title {
    font-size: 44px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #0a0a0a;
    max-width: 480px;
}

.team-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(10, 10, 10, 0.6);
    font-weight: 400;
    white-space: nowrap;
    padding-bottom: 8px;
}

.team-bullet {
    width: 7px;
    height: 7px;
    background: rgba(10, 10, 10, 0.6);
    display: inline-block;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 0.82 / 1;
    background: #1a1a1a;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.35s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.04);
}

.team-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
}

.team-name {
    font-size: 17px;
    font-weight: 500;
    color: #0a0a0a;
    letter-spacing: -0.2px;
}

.team-role {
    font-size: 12px;
    color: rgba(10, 10, 10, 0.45);
    white-space: nowrap;
}


.whyus {
    background: #ffffff;
    padding: 0 32px 140px 32px;
}

.whyus-container {
    max-width: 1300px;
    margin: 0 auto;
}

.whyus-header,
.testimonials-header,
.faq-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(10, 10, 10, 0.15);
    margin-bottom: 50px;
}

.whyus-title,
.testimonials-title,
.faq-title {
    font-size: 44px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #0a0a0a;
    max-width: 520px;
}

.whyus-label,
.testimonials-label,
.faq-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(10, 10, 10, 0.6);
    font-weight: 400;
    white-space: nowrap;
    padding-bottom: 8px;
}

.whyus-bullet,
.testimonials-bullet,
.faq-bullet {
    width: 7px;
    height: 7px;
    background: rgba(10, 10, 10, 0.6);
    display: inline-block;
}

.whyus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.whyus-card {
    border: 1px solid rgba(10, 10, 10, 0.12);
    padding: 36px 30px;
    transition: background-color 0.35s ease, border-color 0.35s ease;
}

.whyus-card:hover {
    background: #0a0a0a;
    border-color: #0a0a0a;
}

.whyus-icon {
    width: 32px;
    height: 32px;
    stroke-width: 1.25;
    color: #0a0a0a;
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.whyus-card h3 {
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.3px;
    color: #0a0a0a;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.whyus-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(10, 10, 10, 0.55);
    transition: color 0.3s ease;
}

.whyus-card:hover .whyus-icon,
.whyus-card:hover h3 {
    color: #ffffff;
}

.whyus-card:hover p {
    color: rgba(255, 255, 255, 0.7);
}


.testimonials {
    background: #f6f6f4;
    padding: 120px 32px;
}

.testimonials-container {
    max-width: 1300px;
    margin: 0 auto;
}

.testimonials-slider {
    overflow: hidden;
    cursor: grab;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.testimonials-slider.dragging {
    cursor: grabbing;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
}

.testimonial-card {
    background: #ffffff;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 420px;
    flex-shrink: 0;
    user-select: none;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: #fbbf24;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(10, 10, 10, 0.75);
    flex: 1;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-person img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-person div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-name {
    font-size: 15px;
    font-weight: 500;
    color: #0a0a0a;
}

.testimonial-role {
    font-size: 12px;
    color: rgba(10, 10, 10, 0.45);
}


.faq {
    background: #ffffff;
    padding: 120px 32px;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(10, 10, 10, 0.15);
}

.faq-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: none;
    border: none;
    padding: 26px 0;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: -0.2px;
    color: #0a0a0a;
    transition: opacity 0.2s ease;
}

.faq-head:hover {
    opacity: 0.65;
}

.faq-icon {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
    flex-shrink: 0;
    transition: transform 0.35s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.faq-item.active .faq-body {
    grid-template-rows: 1fr;
}

.faq-body-inner {
    overflow: hidden;
}

.faq-body-inner p {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(10, 10, 10, 0.55);
    max-width: 720px;
    padding-bottom: 26px;
}


.cta-banner {
    background: #ffffff;
    padding: 20px 32px 140px 32px;
}

.cta-banner-inner {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    overflow: hidden;
    background: #0a0a0a;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    display: block;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 13px;
    margin-bottom: 28px;
}

.cta-banner-badge i {
    width: 14px;
    height: 14px;
    stroke-width: 1.75;
}

.cta-banner-content h2 {
    font-size: 46px;
    font-weight: 400;
    letter-spacing: -1.2px;
    line-height: 1.15;
    color: #ffffff;
    max-width: 620px;
    margin-bottom: 20px;
}

.cta-banner-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin-bottom: 36px;
}

.cta-banner-button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    color: #0a0a0a;
    padding: 15px 28px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.cta-banner-button:hover {
    opacity: 0.88;
}

.cta-banner-button i {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}


.process {
    background: #ffffff;
    padding: 0 32px 140px 32px;
}

.process-container {
    max-width: 1300px;
    margin: 0 auto;
}

.process-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(10, 10, 10, 0.15);
    margin-bottom: 50px;
}

.process-title {
    font-size: 44px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #0a0a0a;
}

.process-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(10, 10, 10, 0.6);
    white-space: nowrap;
    padding-bottom: 8px;
}

.process-bullet {
    width: 7px;
    height: 7px;
    background: rgba(10, 10, 10, 0.6);
    display: inline-block;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.process-step {
    position: relative;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(10, 10, 10, 0.15);
}

.process-step::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: #0a0a0a;
    transition: width 0.8s ease 0.2s;
}

.process-step.visible::before {
    width: 100%;
}

.process-number {
    display: block;
    font-size: 15px;
    color: rgba(10, 10, 10, 0.4);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.3px;
    color: #0a0a0a;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(10, 10, 10, 0.55);
}


.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


.footer {
    background: #0a0a0a;
    color: #ffffff;
    padding: 100px 32px 0 32px;
    overflow: hidden;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1.6fr;
    gap: 80px;
    align-items: start;
    padding-bottom: 90px;
}

.footer-headline {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #ffffff;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color 0.2s ease;
}

.footer-col ul li span:hover {
    color: #ffffff;
}

.footer-wordmark {
    font-size: clamp(80px, 15vw, 230px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    color: transparent;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.03));
    -webkit-background-clip: text;
    background-clip: text;
    user-select: none;
    pointer-events: none;
    margin-top: 30px;
    margin-bottom: -0.28em;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal span {
    cursor: pointer;
    transition: color 0.2s ease;
}

.footer-legal span:hover {
    color: #ffffff;
}

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

.footer-social-link {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.footer-social-link svg {
    width: 15px;
    height: 15px;
    fill: rgba(255, 255, 255, 0.45);
    transition: fill 0.2s ease;
}

.footer-social-link:hover svg {
    fill: #ffffff;
}


@media (max-width: 1200px) {
    .nav-container {
        padding: 0 32px;
    }

    .hero-content {
        padding: 60px;
    }

    .hero-title {
        font-size: 44px;
    }

    .services-title {
        font-size: 46px;
    }

    .about-title,
    .about-subtitle {
        font-size: 36px;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .hero-content {
        padding: 70px 40px;
    }

    .hero-image {
        min-height: 480px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-left img {
        max-width: 100%;
        height: 400px;
    }

    .about {
        padding: 90px 32px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }

    .service-body-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-info {
        padding-left: 0;
    }

    .services-container {
        padding: 70px 40px 80px 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero {
        padding: 0 16px 32px 16px;
    }

    .hero-content {
        padding: 50px 28px;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 20px;
    }

    .hero-image {
        min-height: 380px;
    }

    .trusted-card {
        right: 16px;
        bottom: 16px;
        left: 16px;
        min-width: 0;
        padding: 18px 20px;
    }

    .about {
        padding: 70px 20px;
    }

    .about-title,
    .about-subtitle {
        font-size: 28px;
    }

    .video {
        padding: 12px 16px 80px 16px;
    }

    .video-wrapper {
        aspect-ratio: 16 / 10;
    }

    .video-play {
        width: 68px;
        height: 68px;
    }

    .video-play i {
        width: 24px;
        height: 24px;
    }

    .video-ring.ring-3 {
        display: none;
    }

    .services {
        padding-bottom: 80px;
    }

    .services-container {
        padding: 56px 24px 64px 24px;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-bottom: 36px;
    }

    .services-title {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .service-head {
        gap: 18px;
        padding: 24px 0;
    }

    .service-name {
        font-size: 20px;
    }

    .service-number {
        font-size: 16px;
        min-width: 34px;
    }

    .team {
        padding: 0 20px 80px 20px;
    }

    .team-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-bottom: 28px;
        margin-bottom: 36px;
    }

    .team-title {
        font-size: 32px;
    }
}

@media (max-width: 1024px) {
    .whyus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 50px 40px;
    }
}

@media (max-width: 768px) {
    .whyus {
        padding: 0 20px 80px 20px;
    }

    .testimonials,
    .faq {
        padding: 80px 20px;
    }

    .whyus-header,
    .testimonials-header,
    .faq-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-bottom: 28px;
        margin-bottom: 36px;
    }

    .whyus-title,
    .testimonials-title,
    .faq-title {
        font-size: 32px;
    }

    .whyus-grid {
        grid-template-columns: 1fr;
    }

    .faq-head {
        font-size: 16px;
        padding: 20px 0;
    }

    .cta-banner {
        padding: 12px 16px 80px 16px;
    }

    .cta-banner-content {
        padding: 64px 24px;
    }

    .cta-banner-content h2 {
        font-size: 32px;
    }

    .footer {
        padding: 64px 20px 0 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 44px;
        padding-bottom: 50px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .process {
        padding: 0 20px 80px 20px;
    }

    .process-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-bottom: 28px;
        margin-bottom: 36px;
    }

    .process-title {
        font-size: 32px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        width: 320px;
        padding: 28px 24px;
    }

    .footer {
        padding: 64px 20px 0 20px;
    }

    .footer-headline {
        font-size: 30px;
    }

    .footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 520px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 30px;
    }

    .stat-number {
        font-size: 34px;
    }

    .testimonial-card {
        width: 280px;
    }
}
