/* ============================================================
   Web.Studio — Portfolio Template
   Fonts: Fraunces (display) + Plus Jakarta Sans (body)
   ============================================================ */

/* ===== VARIABLES ===== */
:root {
    --cream:        #F7F2E8;
    --cream-dark:   #EDE7D9;
    --dark:         #1A1A1A;
    --dark-alt:     #2B2B2B;
    --orange:       #F86F1C;
    --orange-pale:  #FFF0E5;
    --muted:        #8A7F72;
    --border:       #E0D8CC;
    --white:        #FFFFFF;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body:    'Plus Jakarta Sans', sans-serif;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 17px;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--dark);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; }
p { color: #5A5248; font-size: 1rem; }
section { position: relative; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }
::selection { background: var(--orange); color: #fff; }

/* ===== UTILITIES ===== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.35rem;
}
.section-tag::before,
.section-tag::after {
    content: '';
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--orange);
}

.section-title {
    /* 30px mobile → ~44px 1440px → 46px cap */
    font-size: clamp(1.75rem, 3vw, 2.7rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.35rem;
}
.section-title em { font-style: italic; color: var(--orange); }

/* ===== BUTTONS ===== */
.btn-primary-cta {
    display: inline-block;
    padding: 14px 36px;
    background: var(--orange);
    color: #fff;
    border: 2px solid var(--orange);
    border-radius: 5px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .03em;
    text-decoration: none;
    transition: background .3s, color .3s;
    cursor: pointer;
}
.btn-primary-cta:hover { background: transparent; color: var(--orange); }

.btn-outline-cta {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
    border-radius: 5px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .03em;
    text-decoration: none;
    transition: background .3s, color .3s;
}
.btn-outline-cta:hover { background: var(--dark); color: #fff; }

/* ===== NAVBAR ===== */
#mainNav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(247, 242, 232, .96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    transition: padding .3s, box-shadow .3s;
}
#mainNav.scrolled {
    padding: .55rem 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    line-height: 1;
}
.nav-brand span { color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: .2rem; }
.nav-links a {
    position: relative;
    padding: .45rem 1rem;
    font-size: .93rem;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: .01em;
    transition: color .25s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 1rem; right: 1rem;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform .25s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { transform: scaleX(1); }

.mobile-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--dark);
    line-height: 1;
    display: none;
    padding: 0;
}
.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}
.mobile-menu a {
    display: block;
    padding: .65rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    transition: color .2s;
}
.mobile-menu a:hover { color: var(--orange); }

@media (max-width: 991px) {
    .nav-links,
    .nav-desktop-btn { display: none !important; }
    .mobile-toggle { display: block; }
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 90px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -15%; right: -8%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 111, 28, .1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.5rem;
}
.hero-eyebrow span {
    display: inline-block;
    width: 36px; height: 2px;
    background: var(--orange);
}

.hero-title {
    font-family: var(--font-display);
    /* 30px mobile → ~50px 1440px → 54px cap — укладывается в 3 строки */
    font-size: clamp(1.8rem, 3.5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.18;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-variation-settings: 'opsz' 36;
}
.hero-title em { font-style: italic; color: var(--orange); }

.hero-sub {
    font-size: 1.18rem;
    color: var(--muted);
    max-width: 490px;
    margin-bottom: 2.5rem;
    line-height: 1.78;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    margin-top: .5rem;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    font-variation-settings: 'opsz' 28;
}
.stat-label {
    font-size: .84rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: .03em;
    margin-top: .25rem;
}

.hero-visual { position: relative; }
.hero-img-box {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 14px;
    background: linear-gradient(135deg, #232323 0%, #3D3530 100%);
    position: relative;
    overflow: hidden;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero-badge {
    position: absolute;
    bottom: -18px; left: -18px;
    background: var(--orange);
    color: #fff;
    padding: 1.25rem 1.65rem;
    border-radius: 10px;
    box-shadow: 0 14px 40px rgba(248, 111, 28, .38);
}
.hero-badge-n {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    font-variation-settings: 'opsz' 30;
}
.hero-badge-t {
    font-size: .8rem;
    font-weight: 500;
    opacity: .92;
    letter-spacing: .04em;
}
.hero-deco {
    position: absolute;
    top: 18px; right: -18px;
    width: 110px; height: 110px;
    border: 2px solid var(--orange);
    border-radius: 50%;
    opacity: .28;
}

/* ===== MARQUEE ===== */
.marquee-bar {
    background: var(--dark);
    padding: 1.15rem 0;
    overflow: hidden;
}
.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marqueeScroll 22s linear infinite;
    width: max-content;
    white-space: nowrap;
}
.mq-item {
    display: flex;
    align-items: center;
    gap: .9rem;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
}
.mq-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SERVICES ===== */
.services { padding: 115px 0; }

.svc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2.6rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform .38s, box-shadow .38s, border-color .38s;
}
.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform .38s;
}
.svc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .08);
    border-color: transparent;
}
.svc-card:hover::after { transform: scaleX(1); }

.svc-num {
    position: absolute;
    top: 1.8rem; right: 1.8rem;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--cream-dark);
    line-height: 1;
    transition: color .3s;
    user-select: none;
    font-variation-settings: 'opsz' 48;
}
.svc-card:hover .svc-num { color: rgba(248, 111, 28, .07); }

.svc-icon {
    width: 56px; height: 56px;
    background: var(--orange-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.6rem;
    transition: background .3s;
}
.svc-icon i { font-size: 1.5rem; color: var(--orange); transition: color .3s; }
.svc-card:hover .svc-icon { background: var(--orange); }
.svc-card:hover .svc-icon i { color: #fff; }

.svc-title {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: .65rem;
    font-variation-settings: 'opsz' 20;
}
.svc-text {
    font-size: .97rem;
    color: var(--muted);
    line-height: 1.74;
    margin-bottom: 1.5rem;
}
.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .9rem;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    letter-spacing: .02em;
    transition: gap .28s;
}
.svc-link:hover { gap: 14px; color: var(--orange); }

/* ===== PORTFOLIO ===== */
.portfolio { padding: 115px 0; background: var(--dark); }
.portfolio .section-title { color: #fff; }
.portfolio > .container > .row > [class*="col"] > p,
.portfolio .port-lead { color: rgba(255, 255, 255, .48); }

/* --- Portfolio cards --- */
.pf-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    transition: transform .35s, box-shadow .35s;
    border: 1px solid rgba(248, 111, 28, .22);
}
.pf-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
    border-color: rgba(248, 111, 28, .55);
}

/* Browser chrome */
.pf-browser {
    background: #2A2A2A;
    padding: .55rem .85rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}
.pf-dots { display: flex; gap: 5px; }
.pf-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    display: block;
}
.pf-dots span:nth-child(1) { background: #FF5F57; }
.pf-dots span:nth-child(2) { background: #FEBC2E; }
.pf-dots span:nth-child(3) { background: #28C840; }
.pf-urlbar {
    flex: 1;
    background: rgba(255, 255, 255, .1);
    border-radius: 4px;
    height: 22px;
    display: flex;
    align-items: center;
    padding: 0 .65rem;
    font-size: .7rem;
    color: rgba(255, 255, 255, .55);
    font-family: var(--font-body);
    white-space: nowrap;
    overflow: hidden;
    gap: 4px;
}

.pf-urlbar a, a:active, a:visited, a:hover {
    
    /**font-size: .7rem;**/
    color: rgba(255, 255, 255, .55);
    font-family: var(--font-body);
    text-decoration: none;
    
}

/* Screenshot scroll area */
.pf-screen {
    height: 280px;
    overflow: hidden;
    position: relative;
    cursor: default;
}
.pf-screenshot {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    transform: translateY(0);
    /* reset to top on mouse-out instantly */
    transition-property: transform;
}
.pf-card:hover .pf-screenshot {
    transform: translateY(calc(-100% + 280px));
    transition-duration: 8s; /* slower for tall real screenshots */
}
/* snap back to top instantly on mouse leave */
.pf-screen { cursor: crosshair; }

/* Card body / project info */
.pf-body {
    padding: 1.5rem;
    border-top: 1px solid rgba(248, 111, 28, .18);
}
.pf-tags {
    display: flex;
    gap: .45rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.pf-tag {
    display: inline-block;
    padding: 3px 11px;
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .05em;
    line-height: 1.6;
}
.pf-tag-platform {
    background: rgba(248, 111, 28, .13);
    color: var(--orange);
}
.pf-tag-type {
    background: rgba(26, 26, 26, .07);
    color: var(--dark);
}

.pf-card-title {
    font-family: var(--font-display);
    font-size: 1.28rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: .45rem;
    font-variation-settings: 'opsz' 18;
    line-height: 1.25;
}
.pf-card-desc {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.pf-points {
    list-style: none;
    padding: 0; margin: 0 0 1.25rem;
}
.pf-points li {
    font-size: .875rem;
    color: #4A4540;
    padding: .28rem 0;
    display: flex;
    gap: .55rem;
    align-items: flex-start;
    line-height: 1.5;
}
.pf-points li::before {
    content: '✓';
    color: var(--orange);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: .05rem;
}
.pf-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .875rem;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    transition: gap .25s;
}
.pf-link:hover { gap: 13px; color: var(--orange); }

/* Portfolio "view all" link */
.portfolio-more-link {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: 14px 36px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    transition: border-color .28s, color .28s;
}
.portfolio-more-link:hover { border-color: var(--orange); color: var(--orange); }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 115px 0; background: var(--cream-dark); }

.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
}
.testi-q {
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: .5;
    color: var(--orange);
    opacity: .17;
    position: absolute;
    top: 1.8rem; right: 1.8rem;
    font-style: italic;
    user-select: none;
}
.stars { color: var(--orange); font-size: .9rem; margin-bottom: 1.15rem; }
.testi-text {
    font-family: var(--font-display);
    font-size: 1.22rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.64;
    margin-bottom: 1.85rem;
    font-variation-settings: 'opsz' 18;
}
.testi-author { display: flex; align-items: center; gap: .95rem; }
.a-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.a-name { font-weight: 700; font-size: .97rem; color: var(--dark); }
.a-role { font-size: .84rem; color: var(--muted); }

/* ===== PRICING ===== */
.pricing { padding: 115px 0; }

.price-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.75rem 2.5rem;
    height: 100%;
    position: relative;
    transition: transform .38s, box-shadow .38s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(0, 0, 0, .1); }
.price-card.featured { background: var(--dark); border-color: var(--dark); }

.price-badge {
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
}
.price-plan {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.4rem;
}
.price-card.featured .price-plan { color: rgba(255, 255, 255, .38); }

.price-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    font-variation-settings: 'opsz' 40;
}
.price-card.featured .price-num { color: #fff; }

.price-sub { font-size: .9rem; color: var(--muted); margin-bottom: 1.8rem; }
.price-card.featured .price-sub { color: rgba(255, 255, 255, .38); }

.price-hr { height: 1px; background: var(--border); margin: 1.6rem 0; opacity: .35; }
.price-card.featured .price-hr { background: rgba(255, 255, 255, .12); }

.price-feat {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: .95rem;
    margin-bottom: .95rem;
    color: var(--dark);
}
.price-card.featured .price-feat { color: rgba(255, 255, 255, .75); }
.price-feat i { color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.price-feat.off { opacity: .38; }
.price-feat.off i { color: var(--muted); }
.price-card.featured .price-feat.off i { color: rgba(255, 255, 255, .25); }

/* ===== FAQ ===== */
.faq-section { padding: 115px 0; background: var(--cream-dark); }

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: .9rem;
    overflow: hidden;
    transition: box-shadow .28s;
}
.faq-item:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, .06); }

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--dark);
    transition: color .28s;
    font-variation-settings: 'opsz' 18;
}
.faq-q:hover { color: var(--orange); }

.faq-ico {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .88rem;
    transition: all .28s;
}
.faq-item.open .faq-ico {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: rotate(45deg);
}

.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-ai {
    padding: 0 2rem 1.75rem;
    font-size: .97rem;
    color: var(--muted);
    line-height: 1.82;
}

/* ===== CONTACT ===== */
.contact { padding: 115px 0; }

.contact-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.85rem;
}

.f-label {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: .5rem;
}
.f-input {
    width: 100%;
    padding: .9rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--cream);
    color: var(--dark);
    outline: none;
    transition: border-color .28s, box-shadow .28s;
    appearance: none;
}
.f-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(248, 111, 28, .11);
    background: var(--white);
}
.f-input::placeholder { color: #B0A898; }
textarea.f-input { resize: vertical; min-height: 140px; }

.budget-lbl {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: .88rem;
    font-weight: 500;
    cursor: pointer;
    background: var(--cream);
    color: var(--dark);
    transition: all .22s;
    user-select: none;
}
.budget-lbl:hover { border-color: var(--orange); color: var(--orange); }
.budget-lbl.selected { background: var(--orange); border-color: var(--orange); color: #fff; }

.cinfo-item { display: flex; align-items: flex-start; gap: 1.15rem; margin-bottom: 1.85rem; }
.cinfo-ico {
    width: 48px; height: 48px;
    background: var(--orange-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--orange);
    font-size: 1.25rem;
}
.cinfo-label {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .22rem;
}
.cinfo-val { font-size: 1.02rem; font-weight: 500; color: var(--dark); }

/* ===== FOOTER ===== */
footer { background: var(--dark); padding: 80px 0 38px; }

.ft-brand {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: .9rem;
    text-decoration: none;
    font-variation-settings: 'opsz' 28;
}
.ft-brand span { color: var(--orange); }
.ft-desc { font-size: .92rem; color: rgba(255, 255, 255, .38); line-height: 1.72; max-width: 272px; }

.ft-head {
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .28);
    margin-bottom: 1.4rem;
}
.ft-links { list-style: none; padding: 0; margin: 0; }
.ft-links li { margin-bottom: .75rem; }
.ft-links a { font-size: .93rem; color: rgba(255, 255, 255, .5); text-decoration: none; transition: color .25s; }
.ft-links a:hover { color: var(--orange); }

.ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    margin-top: 2.85rem;
    padding-top: 1.85rem;
}
.ft-copy { font-size: .86rem; color: rgba(255, 255, 255, .28); margin: 0; }
.ft-legal { display: flex; gap: 2rem; }
.ft-legal a { font-size: .86rem; color: rgba(255, 255, 255, .28); text-decoration: none; transition: color .25s; }
.ft-legal a:hover { color: var(--orange); }

/* ===== SOCIAL ICONS ===== */
.social-row { display: flex; gap: .65rem; }
.s-ico {
    width: 40px; height: 40px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    font-size: 1rem;
    transition: all .25s;
}
.s-ico:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.s-ico svg { display: block; }
.s-ico-light { border-color: var(--border); color: var(--muted); }
.s-ico-light:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}
.fade-up.vis { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }

/* ===== CONTACT CHANNELS ===== */
.contact-badges {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}
.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .55rem 1.1rem;
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 600;
    width: fit-content;
}
.contact-badge-orange {
    background: var(--orange-pale);
    color: var(--orange);
}
.contact-badge-cream {
    background: var(--cream-dark);
    color: var(--muted);
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: 1.5rem 1.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    margin-bottom: .9rem;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
    position: relative;
    overflow: hidden;
}
.contact-channel::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--orange);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .3s ease;
    border-radius: 0 2px 2px 0;
}
.contact-channel:hover {
    transform: translateX(6px);
    border-color: rgba(248, 111, 28, .35);
    box-shadow: 0 10px 36px rgba(248, 111, 28, .1);
    color: inherit;
}
.contact-channel:hover::before { transform: scaleY(1); }

.ch-ico {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    flex-shrink: 0;
    transition: transform .3s;
}
.contact-channel:hover .ch-ico { transform: scale(1.08); }
.ch-ico svg { display: block; }

.ch-info { flex: 1; min-width: 0; }
.ch-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .2rem;
}
.ch-handle {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    font-variation-settings: 'opsz' 18;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ch-sub {
    font-size: .8rem;
    color: var(--muted);
    margin-top: .15rem;
}
.ch-arrow {
    color: var(--orange);
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-left: .25rem;
    opacity: .5;
    transition: opacity .3s, transform .3s;
}
.contact-channel:hover .ch-arrow {
    opacity: 1;
    transform: translate(3px, -3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    html { font-size: 16px; }
    .hero { padding: 90px 0 60px; }
    .hero-stats { gap: 1.75rem; }
    .stat-num { font-size: 1.75rem; }
    .contact-box { padding: 1.85rem 1.35rem; }
    .ft-legal { flex-wrap: wrap; gap: 1rem; }
    .pf-screen { height: 220px; }
    .pf-card:hover .pf-screenshot { transform: translateY(calc(-100% + 220px)); }
    .services, .portfolio, .testimonials,
    .pricing, .faq-section, .contact { padding-top: 80px; padding-bottom: 80px; }
}
