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

:root {
    --gold: #b8922a;
    --gold-light: #d4aa4a;
    --gold-pale: #f5edda;
    --dark: #131210;
    --dark2: #1e1c18;
    --dark3: #2c2a24;
    --text: #1a1814;
    --text-muted: #6b6558;
    --text-light: #a09880;
    --off-white: #faf7f2;
    --white: #ffffff;
    --border: #e8e0d0;
    --section-pad: 100px;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--off-white);
    color: var(--text);
    overflow-x: hidden
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: var(--dark)
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .4s, padding .4s, box-shadow .4s;
}

nav.scrolled {
    background: rgba(19, 18, 16, 0.97);
    padding: 16px 60px;
    box-shadow: 0 2px 40px rgba(0, 0, 0, .4);
    backdrop-filter: blur(12px);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--white);
    text-decoration: none;
    line-height: 1.1;
}

.nav-logo span {
    display: block;
    font-size: 11px;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    letter-spacing: .18em;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-top: 2px
}

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

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: color .3s
}

.nav-links a:hover {
    color: var(--gold-light)
}

.nav-cta {
    padding: 10px 26px;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px
}

.hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all .3s;
    display: block
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px
}

.mobile-menu.open {
    display: flex
}

.mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--white);
    text-decoration: none;
    letter-spacing: .04em;
    transition: color .3s
}

.mobile-menu a:hover {
    color: var(--gold-light)
}

/* ── HERO ── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(19, 18, 16, .92) 0%, rgba(30, 28, 24, .8) 60%, rgba(44, 42, 36, .7) 100%),
        url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1800&q=80') center/cover no-repeat;
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-line {
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
    opacity: .25;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 140px 60px 100px;
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .8s .2s forwards;
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold)
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 7vw, 90px);
    font-weight: 600;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp .9s .35s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light)
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, .6);
    max-width: 520px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .8s .5s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .8s .65s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--dark);
    padding: 16px 38px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px)
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .3);
    color: rgba(255, 255, 255, .8);
    padding: 16px 38px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
}

.btn-outline:hover {
    border-color: var(--gold-light);
    color: var(--gold-light)
}

.hero-stats {
    position: absolute;
    bottom: 60px;
    right: 60px;
    z-index: 2;
    display: flex;
    gap: 48px;
    opacity: 0;
    animation: fadeUp .8s .8s forwards;
}

.hero-stat {
    text-align: right
}

.hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}

.hero-stat-num span {
    color: var(--gold-light)
}

.hero-stat-label {
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-top: 6px
}

.hero-scroll {
    position: absolute;
    bottom: 50px;
    left: 60px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    opacity: 0;
    animation: fadeUp .8s 1s forwards;
}

.scroll-bar {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollBar 2s 1.5s infinite
}

/* ── SECTIONS ── */
section {
    padding: var(--section-pad) 60px
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-tag::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold)
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text);
}

.section-title em {
    font-style: italic;
    color: var(--gold)
}

/* ── TICKER ── */
.ticker-wrap {
    background: var(--gold);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-flex;
    animation: ticker 25s linear infinite
}

.ticker-item {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--dark);
    padding: 0 40px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.ticker-item::after {
    content: '◆';
    font-size: 8px;
    opacity: .5
}

/* ── ABOUT ── */
#about {
    background: var(--white)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px
}

.about-image-wrap {
    position: relative
}

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

.about-image-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 55%;
    aspect-ratio: 1;
    border: 1px solid var(--gold);
    z-index: -1;
}

.about-badge {
    position: absolute;
    top: 32px;
    left: -32px;
    background: var(--dark);
    color: var(--white);
    padding: 24px;
    width: 130px;
    text-align: center;
}

.about-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1
}

.about-badge-text {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-top: 6px;
    opacity: .6;
    line-height: 1.4
}

.about-text p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 20px
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px
}

.pillar {
    padding: 20px;
    border-left: 2px solid var(--gold);
    background: var(--off-white);
}

.pillar-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 6px
}

.pillar-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6
}

/* ── SERVICES ── */
#services {
    background: var(--off-white)
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px
}

.service-card {
    background: var(--white);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: transform .4s, box-shadow .4s;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}

.service-card:hover::before {
    transform: scaleX(1)
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08)
}

.service-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 20px;
    transition: border-color .3s, background .3s;
}

.service-card:hover .service-icon {
    border-color: var(--gold);
    background: var(--gold-pale)
}

.service-num {
    font-family: 'Cormorant Garamond', serif;
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 64px;
    font-weight: 700;
    color: var(--border);
    line-height: 1;
    transition: color .3s;
}

.service-card:hover .service-num {
    color: var(--gold-pale)
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 14px
}

.service-text {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-muted)
}

/* ── WHY CHOOSE US ── */
#why {
    background: var(--dark);
    color: var(--white)
}

#why .section-title {
    color: var(--white)
}

#why .section-tag {
    color: var(--gold-light)
}

#why .section-tag::before {
    background: var(--gold-light)
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 0
}

.why-item {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    align-items: start;
    transition: padding .3s;
    cursor: default;
}

.why-item:hover {
    padding: 28px 0 28px 12px
}

.why-item-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(184, 146, 42, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 4px;
    transition: background .3s, border-color .3s;
}

.why-item:hover .why-item-icon {
    background: var(--gold);
    border-color: var(--gold)
}

.why-item-title {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 8px;
    transition: color .3s
}

.why-item:hover .why-item-title {
    color: var(--gold-light)
}

.why-item-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .45)
}

.why-visual {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, .06);
    padding: 48px;
    position: relative;
}

.why-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-light), transparent);
}

.why-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px
}

.why-stat {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.why-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .06);
    padding-right: 32px
}

.why-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
}

.why-stat-label {
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-top: 10px;
    line-height: 1.5
}

.why-quote {
    margin-top: 36px;
    padding: 28px;
    border-left: 2px solid var(--gold);
    background: rgba(184, 146, 42, .05);
}

.why-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: rgba(255, 255, 255, .7);
    line-height: 1.6
}

.why-quote cite {
    display: block;
    margin-top: 14px;
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold-light)
}

/* ── APP ── */
#app {
    background: var(--off-white)
}

.app-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px
}

.app-phone {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.phone-frame {
    background: var(--dark);
    border-radius: 44px;
    padding: 14px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .25), 0 0 0 1px rgba(255, 255, 255, .06);
    position: relative;
}

.phone-notch {
    width: 90px;
    height: 28px;
    background: var(--dark2);
    border-radius: 0 0 20px 20px;
    margin: 0 auto 10px;
    position: relative;
    z-index: 2;
}

.phone-screen {
    background: linear-gradient(160deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 32px;
    padding: 20px 16px;
    min-height: 560px;
}

.phone-status {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 16px;
    padding: 0 4px
}

.phone-app-header {
    background: rgba(184, 146, 42, .15);
    border: 1px solid rgba(184, 146, 42, .2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.phone-app-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--gold-light)
}

.phone-app-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, .4);
    margin-top: 3px;
    letter-spacing: .05em
}

.phone-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 16px
}

.phone-tab {
    flex: 1;
    padding: 8px 4px;
    text-align: center;
    font-size: 9px;
    letter-spacing: .05em;
    border-radius: 8px;
    color: rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .05);
}

.phone-tab.active {
    background: var(--gold);
    color: var(--dark);
    font-weight: 600
}

.phone-card {
    background: rgba(255, 255, 255, .05);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 10px;
}

.phone-card-label {
    font-size: 9px;
    color: rgba(255, 255, 255, .4);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 6px
}

.phone-card-value {
    font-size: 22px;
    font-weight: 600;
    color: var(--white)
}

.phone-card-unit {
    font-size: 10px;
    color: rgba(255, 255, 255, .4)
}

.phone-input-row {
    display: flex;
    gap: 8px;
    margin-top: 10px
}

.phone-input {
    flex: 1;
    background: rgba(255, 255, 255, .08);
    border-radius: 8px;
    padding: 10px;
    font-size: 10px;
    color: rgba(255, 255, 255, .6);
}

.phone-btn {
    background: var(--gold);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 10px;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 0
}

.app-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.app-feature-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--gold-pale);
    border: 1px solid rgba(184, 146, 42, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.app-feature-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px
}

.app-feature-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6
}

.app-cta {
    margin-top: 36px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark);
    color: var(--white);
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .06em;
    text-decoration: none;
    transition: all .3s;
}

.btn-dark:hover {
    background: var(--dark3);
    transform: translateY(-2px)
}

/* ── CONTACT ── */
#contact {
    background: var(--white)
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-top: 60px
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-item-label {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 6px
}

.contact-item-value {
    font-size: 15px;
    font-weight: 500
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.form-group label {
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 18px;
    border: 1px solid var(--border);
    background: var(--off-white);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color .3s;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold)
}

.form-group textarea {
    height: 130px
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a09880' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center
}

.btn-submit {
    background: var(--gold);
    color: var(--dark);
    padding: 16px 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all .3s;
    font-family: 'Outfit', sans-serif;
    align-self: flex-start;
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px)
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 60px 40px
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand .nav-logo {
    font-size: 20px
}

.footer-brand-text {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .4);
    margin-top: 16px;
    max-width: 280px
}

.footer-col-title {
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
    font-weight: 500
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: color .3s
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    font-size: 12px;
    color: rgba(255, 255, 255, .25);
}

.footer-bottom a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes ticker {
    to {
        transform: translateX(-50%)
    }
}

@keyframes scrollBar {
    0% {
        transform: scaleY(0) translateY(0);
        transform-origin: top
    }

    50% {
        transform: scaleY(1) translateY(0);
        transform-origin: top
    }

    100% {
        transform: scaleY(1) translateY(100%);
        opacity: 0
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s, transform .7s
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s, transform .7s
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0)
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s, transform .7s
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0)
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {

    nav,
    nav.scrolled {
        padding: 20px 32px
    }

    section {
        padding: 80px 32px
    }

    .hero-content {
        padding: 130px 32px 100px
    }

    .hero-stats {
        right: 32px
    }

    .hero-line {
        left: 32px
    }

    .hero-scroll {
        left: 32px
    }

    footer {
        padding: 60px 32px 32px
    }

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

@media(max-width:900px) {

    .nav-links,
    .nav-cta {
        display: none
    }

    .hamburger {
        display: flex
    }

    .about-grid,
    .why-layout,
    .app-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .services-grid {
        grid-template-columns: 1fr 1fr
    }

    .about-image-wrap {
        max-width: 500px;
        margin: 0 auto
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        bottom: 40px;
        right: 32px
    }

    .hero-stat {
        text-align: right
    }

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

    .about-badge {
        left: -10px
    }
}

@media(max-width:600px) {
    .hero-content {
        padding: 120px 24px 120px
    }

    section {
        padding: 64px 24px
    }

    nav,
    nav.scrolled {
        padding: 18px 24px
    }

    footer {
        padding: 48px 24px 28px
    }

    .services-grid {
        grid-template-columns: 1fr
    }

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

    .footer-top {
        grid-template-columns: 1fr
    }

    .why-stats-grid {
        grid-template-columns: 1fr
    }

    .why-stat:nth-child(odd) {
        border-right: none
    }

    .hero-stats {
        display: none
    }

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