@charset "UTF-8";
:root {
    --ink: #07111f;
    --ink-2: #142a42;
    --blue: #1675ff;
    --cyan: #4edbff;
    --pale: #f4f9ff;
    --line: rgba(7, 17, 31, .1);
    --white: #fff;
    --muted: #64748b;
    --ease: cubic-bezier(.22, 1, .36, 1)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Leelawadee UI", "Noto Sans Thai", "Segoe UI", Tahoma, sans-serif;
    background: #fff;
    line-height: 1.65;
    overflow-x: hidden
}

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

button, input, textarea {
    font: inherit
}

button {
    cursor: pointer;
    border: 0
}

.container {
    width: min(1160px, calc(100% - 48px));
    margin-inline: auto
}

.scroll-progress {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    height: 3px;
    background: transparent
}

.scroll-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--cyan), var(--blue), #b77cff);
    box-shadow: 0 0 18px #39bfff;
    transition: width .1s linear
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    width: 100%;
    padding: 20px 0;
    transition: .5s var(--ease)
}

.site-header.scrolled {
    padding: 11px 0;
    background: rgba(5, 15, 28, .85);
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .09)
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    letter-spacing: .04em;
    font-size: 11px;
    font-weight: 700
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    border-radius: 8px;
    background: #091827;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .15), 0 4px 20px rgba(0, 128, 255, .35)
}

.brand-mark img {
    width: 20px;
    height: 20px;
    object-fit: contain
}

.brand-name {
    line-height: 1.1
}

.brand-name small {
    display: block;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .15em;
    opacity: .65;
    margin-top: 3px
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    color: rgba(255, 255, 255, .76);
    font-size: 13px
}

.main-nav a {
    position: relative;
    transition: .3s
}

.main-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    transition: .35s var(--ease)
}

.main-nav a:not(.nav-cta):hover {
    color: #fff
}

.main-nav a:not(.nav-cta):hover::after {
    width: 100%
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border: 1px solid rgba(110, 212, 255, .55);
    border-radius: 100px;
    color: #fff;
    background: rgba(40, 133, 255, .13);
    transition: .35s var(--ease)
}

.nav-cta span {
    font-size: 16px
}

.nav-cta:hover {
    transform: translateY(-3px);
    background: var(--blue);
    box-shadow: 0 8px 30px rgba(22, 117, 255, .35)
}

.menu-toggle {
    display: none;
    background: none;
    padding: 8px
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    margin: 5px;
    border-radius: 2px;
    transition: .3s
}

.hero {
    min-height: max(560px, 34.69vw);
    display: flex;
    align-items: center;
    position: relative;
    isolation: isolate;
    overflow: hidden;
   /* background: var(--ink);*/
    color: #fff
}

.hero-image {
    position: absolute;
    z-index: -5;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    aspect-ratio: 3840/1332;
    background: url("../img/banner.png") center/100% 100% no-repeat;
    animation: heroZoom 1.4s ease-out both
}

.hero-grid {
    position: absolute;
    z-index: -3;
    inset: 0;
    opacity: 0;
    background-image: linear-gradient(rgba(91, 200, 255, .17) 1px, transparent 1px), linear-gradient(90deg, rgba(91, 200, 255, .17) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(90deg, #000, transparent 82%);
    animation: gridShift 16s linear infinite
}

.hero::after {
    display: none
}

.hero-inner {
    position: relative;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.hero-copy {
    max-width: 640px;
    width: 100%;
    text-align: center
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #80dcff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .19em
}

.eyebrow i {
    width: 30px;
    height: 1px;
    background: currentColor;
    box-shadow: 0 0 12px currentColor
}

.eyebrow.dark {
    color: var(--blue)
}

.hero h1 {
    font-size: clamp(42px, 6vw, 40px);
    line-height: 1.17;
    letter-spacing: -.045em;
    margin: 24px 0 21px;
    font-weight: 600
}

.hero h1 em {
    font-style: normal;
    color: transparent;
    background: linear-gradient(100deg, #fff 15%, #74ddff 55%, #9a7bff);
    background-clip: text;
    -webkit-background-clip: text
}

.hero-copy p {
    max-width: 520px;
    color: rgba(235, 247, 255, .75);
    font-size: 15px;
    margin: 0 auto 32px
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
    border-radius: 100px;
    padding: 14px 21px;
    font-size: 13px;
    font-weight: 700;
    transition: .4s var(--ease);
    position: relative;
    overflow: hidden
}

.button span {
    font-size: 19px;
    line-height: 0
}

.button-primary {
    color: #fff;
    background: linear-gradient(110deg, #1164ed, #2a9eff);
    box-shadow: 0 13px 30px rgba(0, 118, 255, .3)
}

.button-primary::before {
    content: "";
    position: absolute;
    inset: -80%;
    background: linear-gradient(110deg, transparent 40%, rgba(255, 255, 255, .35), transparent 60%);
    transform: translateX(-60%) rotate(12deg);
    transition: 1s
}

.button-primary:hover::before {
    transform: translateX(60%) rotate(12deg)
}

.button-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 149, 255, .46)
}

.text-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
    transition: .3s
}

.text-link span {
    font-size: 20px;
    color: var(--cyan);
    transition: .3s
}

.text-link:hover {
    color: #fff
}

.text-link:hover span {
    transform: translateY(4px)
}

.hero-proof {
    position: absolute;
    right: 0;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border: 1px solid rgba(161, 224, 255, .27);
    border-radius: 14px;
    background: rgba(8, 23, 42, .45);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .15);
    animation: float 4s ease-in-out infinite
}

.proof-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: #07111f;
    background: linear-gradient(135deg, #74ecff, #398dff);
    border-radius: 10px;
    font-size: 18px
}

.hero-proof strong, .hero-proof small {
    display: block
}

.hero-proof strong {
    font-size: 12px
}

.hero-proof small {
    font-size: 10px;
    color: rgba(255, 255, 255, .56);
    margin-top: 2px
}

.hero-scroll {
    position: absolute;
    right: 50%;
    bottom: -117px;
    transform: translateX(50%);
    font-size: 9px;
    letter-spacing: .22em;
    color: rgba(255, 255, 255, .55);
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    gap: 12px
}

.hero-scroll span {
    display: block;
    height: 50px;
    width: 1px;
    background: linear-gradient(var(--cyan), transparent);
    animation: scrollLine 2s infinite
}

.section-light {
    background: #fff
}

.section-blue {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #eff8ff, #eaf8fb 50%, #f3f0ff);
}

.trust {
    padding: 56px 0 125px
}

.section-heading {
    position: relative;
    z-index: 1
}

.section-heading.centered {
    text-align: center
}

.section-heading h2 {
    font-size: clamp(29px, 4vw, 35px);
    line-height: 1.25;
    letter-spacing: -.045em;
    margin: 18px 0 12px;
    font-weight: 600
}

.section-heading p {
    font-size: 14px;
    color: var(--muted);
    margin: 0 auto;
    max-width: 710px
}

.trust-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px
}

.trust-card {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 17px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(18, 41, 76, .07);
    transition: .55s var(--ease);
    transform-style: preserve-3d
}

.trust-card:hover {
    transform: translateY(-12px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 28px 65px rgba(18, 78, 142, .16)
}

.image-wrap {
    position: relative;
    height: 214px;
    overflow: hidden;
    background: #dce9f9
}

.image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 122, 255, .05), transparent 50%, rgba(13, 23, 44, .22));
    pointer-events: none
}

.image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease), filter .5s
}

.trust-card:hover .image-wrap img {
    transform: scale(1.08);
    filter: saturate(1.12)
}

.image-number {
    position: absolute;
    z-index: 1;
    top: 14px;
    right: 15px;
    color: #fff;
    font-size: 11px;
    letter-spacing: .12em;
    font-weight: 700;
    text-shadow: 0 2px 8px #000
}

.card-content {
    position: relative;
    padding: 23px 22px 25px
}

.card-content h3 {
    font-size: 16px;
    margin: 0;
    font-weight: 700
}

.card-line {
    width: 34px;
    height: 2px;
    background: var(--blue);
    box-shadow: 0 0 10px rgba(22, 117, 255, .7);
    margin: 13px 0 13px;
    transition: .5s
}

.trust-card:hover .card-line {
    width: 80px
}

.card-content p {
    font-size: 12px;
    color: #768396;
    margin: 0;
    max-width: 270px
}

.card-arrow {
    position: absolute;
    right: 21px;
    bottom: 23px;
    font-size: 22px;
    color: var(--blue);
    opacity: .5;
    transition: .35s
}

.trust-card:hover .card-arrow {
    opacity: 1;
    transform: translate(4px, -4px)
}

.solutions {
    padding: 115px 0 125px
}

.section-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 5% 10%, rgba(57, 176, 255, .27), transparent 23%), radial-gradient(circle at 96% 85%, rgba(146, 106, 255, .23), transparent 26%)
}

.solutions-grid {
    position: relative;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 62px 30px;
    margin-top: 72px
}

.solution-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 6px 18px;
    transition: .5s var(--ease)
}

.solution-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(200px circle at var(--mx, 50%) var(--my, 50%), rgba(79, 194, 255, .22), transparent 65%);
    opacity: 0;
    transition: .4s
}

.solution-card:hover::before {
    opacity: 1
}

.solution-card:hover {
    transform: translateY(-8px)
}

.solution-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    transition: .45s var(--ease)
}

.solution-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    transition: .45s var(--ease)
}

.solution-card:hover .solution-icon {
    transform: translateY(-6px)
}

.solution-card:hover .solution-icon img {
    transform: scale(1.1);
    filter: drop-shadow(0 12px 18px rgba(27, 119, 255, .3))
}

.solution-card h3, .solution-card p, .solution-index {
    position: relative;
    z-index: 1
}

.solution-index {
    display: none
}

.solution-card h3 {
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
    margin: 20px 0 0;
    transition: color .3s
}

.solution-card h3::after {
    content: "";
    display: block;
    width: 44px;
    height: 3px;
    border-radius: 3px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    box-shadow: 0 0 10px rgba(22, 117, 255, .45);
    transition: width .45s var(--ease)
}

.solution-card:hover h3 {
    color: var(--blue)
}

.solution-card:hover h3::after {
    width: 78px
}

.solution-card p {
    font-size: 13px;
    line-height: 1.75;
    color: #6d7b8d;
    max-width: 320px;
    margin: 14px 0 0
}

.solution-arrow {
    display: none
}

.contact {
    padding: 126px 0
}

.contact-layout {
    display: grid;
    grid-template-columns:.75fr 1.25fr;
    align-items: center;
    gap: 80px
}

.contact-intro h2 {
    font-size: clamp(35px, 5vw, 58px);
    letter-spacing: -.05em;
    line-height: 1.1;
    margin: 18px 0
}

.contact-intro > p {
    color: var(--muted);
    font-size: 14px;
    max-width: 395px
}

.contact-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-top: 1px solid var(--line);
    margin-top: 34px;
    padding-top: 21px;
    max-width: 380px
}

.pulse-dot {
    display: block;
    width: 10px;
    height: 10px;
    margin-top: 7px;
    border-radius: 50%;
    background: #35d49c;
    box-shadow: 0 0 0 7px rgba(53, 212, 156, .12);
    animation: pulse 2s infinite
}

.contact-note strong, .contact-note small {
    display: block
}

.contact-note strong {
    font-size: 13px
}

.contact-note small {
    font-size: 11px;
    color: #7a8797;
    margin-top: 3px
}

.contact-card {
    position: relative;
    border: 1px solid rgba(12, 37, 66, .1);
    border-radius: 18px;
    padding: 25px 26px 20px;
    background: #fff;
    box-shadow: 0 24px 75px rgba(16, 45, 81, .1);
    overflow: hidden
}

.contact-card::before {
    content: "";
    position: absolute;
    left: -20%;
    top: -40%;
    width: 55%;
    height: 150%;
    background: linear-gradient(100deg, transparent, rgba(28, 141, 255, .05), transparent);
    transform: rotate(18deg);
    pointer-events: none
}

.form-top {
    display: flex;
    justify-content: space-between;
    color: #9aa8b8;
    font-size: 9px;
    letter-spacing: .18em;
    font-weight: 700;
    margin-bottom: 19px
}

.form-top b {
    color: var(--blue);
    font-weight: 700
}

.form-row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 22px
}

label {
    display: block;
    color: #23354a;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 17px
}

input, textarea {
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #dbe3ec;
    border-radius: 0;
    padding: 9px 0 10px;
    color: var(--ink);
    outline: 0;
    background: transparent;
    font-size: 12px;
    resize: vertical;
    transition: .3s
}

input::placeholder, textarea::placeholder {
    color: #b5bfcb;
    font-weight: 400
}

input:focus, textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 1px 0 var(--blue)
}

.submit-button {
    width: 100%;
    padding: 12px;
    margin-top: 1px
}

.email-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    margin-top: 14px;
    border-radius: 9px;
    background: #eff6ff
}

.email-bar img {
    width: 22px;
    height: 22px;
    object-fit: contain
}

.email-bar small, .email-bar a {
    display: block
}

.email-bar small {
    font-size: 9px;
    color: #8090a6
}

.email-bar a {
    font-size: 10px;
    color: var(--blue);
    font-weight: 700
}

.email-bar i {
    height: 30px;
    width: 1px;
    background: #cdd9e8;
    margin: 0 5px 0 auto
}

.email-bar p {
    font-size: 9px;
    color: #66778d;
    line-height: 1.55;
    margin: 0
}

.form-success {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .97);
    color: var(--blue);
    font-size: 19px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transform: scale(.94);
    transition: .5s var(--ease)
}

.form-success small {
    font-size: 11px;
    color: var(--muted);
    font-weight: 400;
    margin-top: 3px
}

.form-success.show {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1)
}

.values {
    padding: 112px 0 30px
}

.values-inner {
    position: relative
}

.values-art {
    position: relative;
    max-width: 900px;
    height: 460px;
    margin: 30px auto 0;
    display: grid;
    place-items: end center
}

.values-art img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 26px 23px rgba(34, 114, 162, .2));
    animation: artFloat 5s ease-in-out infinite
}

.art-ring {
    position: absolute;
    border: 1px solid rgba(39, 142, 255, .3);
    border-radius: 50%;
    left: 50%;
    top: 53%;
    transform: translate(-50%, -50%);
    aspect-ratio: 1
}

.ring-one {
    width: 260px;
    animation: spin 22s linear infinite
}

.ring-two {
    width: 390px;
    border-style: dashed;
    opacity: .6;
    animation: spin 34s linear reverse infinite
}

.site-footer {
    color: white;
    background: #3E3E3E;
    padding: 53px 0 20px;
    position: relative;
    overflow: hidden
}

.site-footer::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 600px;
    height: 240px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, #3E3E3E, transparent 68%);
    pointer-events: none
}

.footer-main {
    position: relative;
    text-align: center
}

.footer-brand {
    justify-content: center
}

.footer-main > p {
    max-width: 610px;
    margin: 19px auto 22px;
    color:white;
    font-size: 11px
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 26px;
    font-size: 11px
}

.footer-links a {
    transition: .3s
}

.footer-links a:hover {
    color: var(--cyan)
}

.footer-bottom {
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 42px;
    padding-top: 18px;
    font-size: 9px;
    color: white;
    letter-spacing: .1em
}

.footer-bottom b {
    color: var(--cyan);
    font-size: 14px;
    margin-left: 7px
}

.toast {
    position: fixed;
    z-index: 100;
    right: 24px;
    bottom: 24px;
    transform: translateY(20px);
    opacity: 0;
    padding: 12px 18px;
    border-radius: 10px;
    color: #fff;
    background: #0c213a;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .24);
    font-size: 12px;
    transition: .4s var(--ease)
}

.toast.show {
    opacity: 1;
    transform: none
}

.cursor-glow {
    position: fixed;
    z-index: 2;
    width: 220px;
    height: 220px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 158, 255, .12), transparent 68%);
    transform: translate(-50%, -50%);
    mix-blend-mode: multiply;
    opacity: 0;
    transition: opacity .4s
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease), transform .8s var(--ease)
}

.reveal.active {
    opacity: 1;
    transform: none
}

.reveal-delay-1 {
    transition-delay: .12s
}

.reveal-delay-2 {
    transition-delay: .24s
}

.reveal-delay-3 {
    transition-delay: .36s
}

@keyframes heroZoom {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes gridShift {
    to {
        background-position: 80px 80px
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-9px)
    }
}

@keyframes artFloat {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-7px)
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 7px rgba(53, 212, 156, .12)
    }
    50% {
        box-shadow: 0 0 0 13px rgba(53, 212, 156, 0)
    }
}

@keyframes scrollLine {
    0% {
        opacity: 0;
        transform: scaleY(.2);
        transform-origin: top
    }
    40% {
        opacity: 1
    }
    100% {
        opacity: 0;
        transform: scaleY(1);
        transform-origin: top
    }
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@media (max-width: 820px) {
    .container {
        width: min(100% - 32px, 600px)
    }

    .site-header {
        padding: 15px 0
    }

    .menu-toggle {
        display: block
    }

    .main-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 66px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, .15);
        border-radius: 16px;
        background: rgba(6, 20, 36, .95);
        backdrop-filter: blur(18px);
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: .35s
    }

    .main-nav.open {
        opacity: 1;
        transform: none;
        pointer-events: auto
    }

    .main-nav a {
        padding: 12px 14px
    }

    .main-nav a:not(.nav-cta)::after {
        display: none
    }

    .nav-cta {
        justify-content: center;
        margin-top: 6px
    }

    .hero {
        min-height: max(480px, 34.69vw)
    }

    .hero-image {
        background-position: 62% center
    }

    .hero-inner {
        padding-top: 70px
    }

    .hero h1 {
        font-size: 47px
    }

    .hero-copy p {
        font-size: 13px
    }

    .hero-proof {
        left: 0;
        right: auto;
        bottom: 32px
    }

    .hero-scroll {
        display: none
    }

    .trust {
        padding: 44px 0 82px
    }

    .contact {
        padding: 82px 0
    }

    .trust-grid, .solutions-grid {
        grid-template-columns:1fr
    }

    .solutions {
        padding: 82px 0
    }

    .trust-card {
        max-width: 480px;
        margin: 0 auto;
        width: 100%
    }

    .solution-card {
        min-height: 0;
        padding: 4px 10px
    }

    .solutions-grid {
        gap: 42px;
        margin-top: 52px
    }

    .contact-layout {
        grid-template-columns:1fr;
        gap: 42px
    }

    .contact-intro > p {
        max-width: 580px
    }

    .values {
        padding: 82px 0 0
    }

    .values-art {
        height: 260px;
        margin-top: 28px
    }

    .ring-one {
        width: 190px
    }

    .ring-two {
        width: 280px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center
    }

    .desktop-only {
        display: none
    }

    .cursor-glow {
        display: none
    }
}

@media (max-width: 500px) {
    .brand-name {
        font-size: 9px
    }

    .brand-name small {
        font-size: 7px
    }

    .hero h1 {
        font-size: 39px
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 19px
    }

    .section-heading h2 {
        font-size: 31px
    }

    .form-row {
        grid-template-columns:1fr;
        gap: 0
    }

    .contact-card {
        padding: 20px 18px 16px
    }

    .email-bar {
        align-items: flex-start;
        flex-wrap: wrap
    }

    .email-bar i {
        display: none
    }

    .email-bar p {
        width: 100%;
        padding-left: 34px
    }

    .hero {
        min-height: 700px
    }

    .hero-image {
        aspect-ratio: auto;
        bottom: 0;
        background-size: cover;
        background-position: 62% center
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important
    }
}

/* ===== Contact form (centered card) ===== */
.contact {
    padding: 112px 0
}

.contact .contact-card {
    max-width: 1040px;
    margin: 48px auto 0;
    padding: 48px 52px 40px;
    border-radius: 22px
}

.contact label {
    font-size: 14px;
    margin-bottom: 24px
}

.contact input,
.contact textarea {
    font-size: 14px;
    padding: 12px 0 13px
}

.contact textarea {
    min-height: 104px
}

.contact .submit-button {
    padding: 19px;
    font-size: 16px;
    border-radius: 12px;
    margin-top: 10px;
    letter-spacing: .03em
}

.contact .email-bar {
    margin-top: 24px;
    padding: 20px 28px;
    border-radius: 14px;
    gap: 18px;
    background: #eef5ff
}

.contact .email-bar img {
    width: 32px;
    height: 32px
}

.contact .email-bar small {
    font-size: 12px
}

.contact .email-bar a {
    font-size: 15px;
    margin-top: 2px
}

.contact .email-bar i {
    height: 48px
}

.contact .email-bar p {
    font-size: 12px;
    line-height: 1.65
}

.field-error {
    border-color: #ff4d4f !important;
    box-shadow: 0 1px 0 #ff4d4f !important;
    animation: fieldShake .5s var(--ease)
}

@keyframes fieldShake {
    0%, 100% { transform: translateX(0) }
    20% { transform: translateX(-7px) }
    40% { transform: translateX(6px) }
    60% { transform: translateX(-4px) }
    80% { transform: translateX(3px) }
}

/* ===== Feedback modal (error #ECF9FF / success #165DFF) ===== */
.fm-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(6, 16, 32, .58);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s var(--ease), visibility .4s
}

.fm-overlay.show {
    opacity: 1;
    visibility: visible
}

.fm-overlay.closing {
    opacity: 0;
    transition: opacity .32s var(--ease)
}

.fm-modal {
    position: relative;
    width: min(580px, 100%);
    padding: 66px 56px 54px;
    border-radius: 32px;
    text-align: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(80px) scale(.78) rotate(-2deg);
    transition: transform .65s cubic-bezier(.18, 1.35, .32, 1), opacity .45s var(--ease);
    box-shadow: 0 45px 130px rgba(0, 0, 0, .38)
}

.fm-overlay.show .fm-modal {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0)
}

.fm-overlay.closing .fm-modal {
    opacity: 0;
    transform: translateY(46px) scale(.82)
}

.fm-modal.is-error {
    background: radial-gradient(circle at 50% -8%, #fff 0%, #ECF9FF 52%, #d6f0ff 100%);
    border: 1.5px solid rgba(22, 93, 255, .28);
    color: #0b2a4a
}

.fm-modal.is-success {
    background: radial-gradient(circle at 50% -12%, #5a93ff 0%, #165DFF 52%, #0838b8 100%);
    border: 1.5px solid rgba(255, 255, 255, .4);
    color: #fff
}

.fm-bg-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(320px circle at 50% 0%, rgba(255, 255, 255, .65), transparent 72%)
}

.is-success .fm-bg-glow {
    background: radial-gradient(340px circle at 50% -4%, rgba(255, 255, 255, .28), transparent 70%)
}

.fm-ring {
    position: absolute;
    left: 50%;
    top: 128px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 2px solid;
    pointer-events: none;
    opacity: 0
}

.is-error .fm-ring {
    border-color: rgba(22, 93, 255, .45)
}

.is-success .fm-ring {
    border-color: rgba(255, 255, 255, .55)
}

.fm-overlay.show .fm-ring-a {
    animation: fmRing 2.1s ease-out infinite
}

.fm-overlay.show .fm-ring-b {
    animation: fmRing 2.1s ease-out 1.05s infinite
}

@keyframes fmRing {
    0% { opacity: .9; transform: translate(-50%, -50%) scale(.5) }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.5) }
}

.fm-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.fm-confetti span {
    position: absolute;
    left: 50%;
    top: 118px;
    width: 11px;
    height: 15px;
    border-radius: 3px;
    opacity: 0
}

.fm-overlay.show .fm-confetti span {
    animation: fmConfetti 1.9s cubic-bezier(.16, .8, .36, 1) forwards
}

@keyframes fmConfetti {
    0% { opacity: 1; transform: translate(-50%, 0) rotate(0) scale(1) }
    100% { opacity: 0; transform: translate(calc(-50% + var(--cx)), var(--cy)) rotate(760deg) scale(.55) }
}

.fm-icon-wrap {
    position: relative;
    z-index: 2;
    width: 122px;
    height: 122px;
    margin: 0 auto 28px
}

.fm-icon-halo {
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    animation: fmHalo 2s ease-in-out infinite
}

.is-error .fm-icon-halo {
    background: radial-gradient(circle, rgba(255, 90, 95, .28), transparent 70%)
}

.is-success .fm-icon-halo {
    background: radial-gradient(circle, rgba(255, 255, 255, .4), transparent 70%)
}

@keyframes fmHalo {
    0%, 100% { transform: scale(1); opacity: .7 }
    50% { transform: scale(1.22); opacity: 1 }
}

.fm-icon {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 12px 22px rgba(10, 40, 90, .25))
}

.fm-icon-circle {
    fill: #fff;
    stroke-width: 6;
    stroke-dasharray: 284;
    stroke-dashoffset: 284
}

.fm-icon-mark {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 60;
    stroke-dashoffset: 60
}

.is-error .fm-icon-circle {
    stroke: #ff5a5f
}

.is-error .fm-icon-mark {
    stroke: #ff5a5f
}

.is-success .fm-icon-circle {
    stroke: #165DFF
}

.is-success .fm-icon-mark {
    stroke: #165DFF
}

.fm-check,
.fm-cross-a,
.fm-cross-b {
    display: none
}

.is-success .fm-check {
    display: block
}

.is-error .fm-cross-a,
.is-error .fm-cross-b {
    display: block
}

.fm-overlay.show .fm-icon-circle {
    animation: fmDraw .7s var(--ease) forwards
}

.fm-overlay.show .fm-check {
    animation: fmDraw .45s var(--ease) .6s forwards
}

.fm-overlay.show .fm-cross-a {
    animation: fmDraw .32s var(--ease) .55s forwards
}

.fm-overlay.show .fm-cross-b {
    animation: fmDraw .32s var(--ease) .78s forwards
}

@keyframes fmDraw {
    to { stroke-dashoffset: 0 }
}

.is-error .fm-icon-wrap {
    animation: fmShake .65s var(--ease) .95s
}

@keyframes fmShake {
    0%, 100% { transform: translateX(0) rotate(0) }
    18% { transform: translateX(-10px) rotate(-5deg) }
    38% { transform: translateX(9px) rotate(4deg) }
    58% { transform: translateX(-7px) rotate(-3deg) }
    78% { transform: translateX(5px) rotate(2deg) }
}

.fm-title {
    position: relative;
    z-index: 2;
    font-size: 33px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.25;
    margin: 0 0 14px;
    opacity: 0;
    transform: translateY(18px)
}

.fm-sub {
    position: relative;
    z-index: 2;
    font-size: 15.5px;
    line-height: 1.75;
    max-width: 420px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(18px)
}

.is-error .fm-sub {
    color: #3a5878
}

.is-success .fm-sub {
    color: rgba(255, 255, 255, .88)
}

.fm-overlay.show .fm-title {
    animation: fmUp .55s var(--ease) .38s forwards
}

.fm-overlay.show .fm-sub {
    animation: fmUp .55s var(--ease) .54s forwards
}

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

.fm-errors {
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 26px auto 0;
    max-width: 400px;
    text-align: left
}

.fm-errors:empty {
    display: none
}

.fm-errors li {
    position: relative;
    padding: 12px 18px 12px 48px;
    margin-bottom: 10px;
    border-radius: 14px;
    background: rgba(255, 90, 95, .09);
    border: 1px solid rgba(255, 90, 95, .3);
    color: #c2353b;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    opacity: 0;
    transform: translateX(-28px)
}

.fm-errors li::before {
    content: "!";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6f, #ff4d4f);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 12px rgba(255, 77, 79, .4)
}

.fm-overlay.show .fm-errors li {
    animation: fmSlideIn .5s var(--ease) forwards
}

.fm-overlay.show .fm-errors li:nth-child(1) { animation-delay: .72s }
.fm-overlay.show .fm-errors li:nth-child(2) { animation-delay: .82s }
.fm-overlay.show .fm-errors li:nth-child(3) { animation-delay: .92s }
.fm-overlay.show .fm-errors li:nth-child(4) { animation-delay: 1.02s }
.fm-overlay.show .fm-errors li:nth-child(5) { animation-delay: 1.12s }
.fm-overlay.show .fm-errors li:nth-child(6) { animation-delay: 1.22s }
.fm-overlay.show .fm-errors li:nth-child(n+7) { animation-delay: 1.3s }

@keyframes fmSlideIn {
    to { opacity: 1; transform: translateX(0) }
}

.fm-btn {
    position: relative;
    z-index: 2;
    margin-top: 32px;
    padding: 17px 58px;
    border: 0;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    overflow: hidden;
    opacity: 0;
    transform: translateY(18px);
    transition: box-shadow .3s var(--ease), filter .3s var(--ease)
}

.fm-overlay.show .fm-btn {
    animation: fmUp .55s var(--ease) 1.05s forwards
}

.is-error .fm-btn {
    background: linear-gradient(110deg, #165DFF, #3b9bff);
    color: #fff;
    box-shadow: 0 16px 38px rgba(22, 93, 255, .4)
}

.is-success .fm-btn {
    background: #fff;
    color: #165DFF;
    box-shadow: 0 16px 38px rgba(0, 20, 70, .35)
}

.fm-btn:hover {
    filter: brightness(1.08);
    box-shadow: 0 20px 48px rgba(22, 93, 255, .55)
}

.is-success .fm-btn:hover {
    box-shadow: 0 20px 48px rgba(0, 20, 70, .5)
}

.fm-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 40%, rgba(255, 255, 255, .5), transparent 60%);
    transform: translateX(-120%)
}

.fm-btn:hover::after {
    animation: fmShine .8s var(--ease)
}

@keyframes fmShine {
    to { transform: translateX(120%) }
}

@media (max-width: 820px) {
    .contact {
        padding: 82px 0
    }

    .contact .contact-card {
        padding: 30px 24px 26px
    }

    .fm-modal {
        padding: 52px 30px 44px;
        border-radius: 26px
    }

    .fm-title {
        font-size: 26px
    }

    .fm-sub {
        font-size: 14px
    }

    .fm-icon-wrap {
        width: 100px;
        height: 100px
    }

    .fm-ring {
        top: 108px
    }
}
