* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-top: 78px;
    font-family: Arial, Helvetica, sans-serif;
    color: #172033;
    background:
        radial-gradient(circle at 12% 0%, rgba(217, 119, 6, 0.18), transparent 32rem),
        radial-gradient(circle at 90% 18%, rgba(15, 23, 42, 0.08), transparent 28rem),
        linear-gradient(180deg, #fffaf0 0%, #ffffff 44%, #fff7ed 100%);
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section-pad {
    padding: 86px 0;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 70;
    background: rgba(255, 250, 240, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 245px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: -1px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.44), transparent 24px),
        linear-gradient(135deg, var(--primary), #000000);
    box-shadow: 0 16px 32px rgba(17, 24, 39, 0.22);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    color: var(--primary);
    font-size: 0.98rem;
    line-height: 1.1;
}

.brand small {
    margin-top: 2px;
    color: #7c6f64;
    font-size: 0.78rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #4b5563;
    font-size: 0.92rem;
    font-weight: 800;
}

.site-nav a {
    position: relative;
}

.site-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    border-radius: 99px;
    background: var(--secondary);
    transition: width 0.25s ease;
}

.site-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 11px 17px;
    color: #111827;
    border-radius: 999px;
    background: #f59e0b;
    box-shadow: 0 12px 28px rgba(217, 119, 6, 0.22);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.1);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 99px;
    background: var(--primary);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(17, 24, 39, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, black, transparent 82%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.98fr 1.02fr;
    gap: 56px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: #b45309;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.74rem;
    font-weight: 900;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 720px;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: clamp(2.65rem, 5.7vw, 5.45rem);
    line-height: 0.94;
    letter-spacing: -0.075em;
}

h2 {
    margin-bottom: 16px;
    color: var(--primary);
    font-size: clamp(2rem, 4vw, 3.75rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

h3 {
    color: var(--primary);
    line-height: 1.15;
}

.hero-text {
    max-width: 660px;
    color: #4b5563;
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #ffffff;
    background: #050b18;
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.22);
}

.btn-secondary {
    color: #111827;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.1), 0 14px 28px rgba(17, 24, 39, 0.08);
}

.full-width {
    width: 100%;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 38px;
    max-width: 590px;
}

.hero-stats div {
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.06);
}

.hero-stats strong,
.hero-stats span {
    display: block;
}

.hero-stats strong {
    color: var(--primary);
    font-size: 1.4rem;
}

.hero-stats span {
    color: #6b7280;
    font-size: 0.85rem;
}

.hero-media {
    position: relative;
    min-height: 610px;
}

.hero-media img {
    width: 100%;
    height: 610px;
    object-fit: cover;
    border-radius: 42px;
    box-shadow: 0 38px 90px rgba(17, 24, 39, 0.24);
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 32px;
    pointer-events: none;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 42px;
    background: linear-gradient(180deg, transparent 48%, rgba(3, 7, 18, 0.64));
    pointer-events: none;
}

.hero-card {
    position: absolute;
    z-index: 2;
    max-width: 260px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 20px 55px rgba(17, 24, 39, 0.16);
    backdrop-filter: blur(15px);
}

.hero-card span,
.hero-card strong {
    display: block;
}

.hero-card span {
    margin-bottom: 5px;
    color: #b45309;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-card strong {
    color: var(--primary);
}

.hero-card-top {
    top: 56px;
    right: -18px;
}

.hero-card-bottom {
    left: -18px;
    bottom: 72px;
}

.ticker-strip {
    overflow: hidden;
    padding: 18px 0;
    color: #ffffff;
    background: #050b18;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerMove 24s linear infinite;
}

.ticker-group {
    display: flex;
    align-items: center;
    gap: 36px;
    padding-right: 36px;
}

.ticker-group span {
    white-space: nowrap;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ticker-group span::before {
    content: "•";
    margin-right: 36px;
    color: #f59e0b;
}

@keyframes tickerMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-25%);
    }
}

.section-heading {
    max-width: 780px;
    margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
    color: #6b7280;
    font-size: 1.03rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card,
.process-card,
.testimonial-card,
.contact-form,
.faq-item,
.portfolio-card,
.package-card {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 20px 50px rgba(17, 24, 39, 0.07);
}

.service-card {
    overflow: hidden;
    border-radius: 32px;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.12);
}

.service-image img {
    width: 100%;
    height: 245px;
    object-fit: cover;
}

.service-body {
    padding: 24px;
}

.service-tag {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #111827;
    background: #f59e0b;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    color: #6b7280;
}

.service-card ul,
.package-card ul {
    padding-left: 18px;
    margin: 18px 0 0;
    color: #374151;
}

.service-card li,
.package-card li {
    margin: 7px 0;
}

.about-section {
    background:
        radial-gradient(circle at 86% 12%, rgba(217, 119, 6, 0.16), transparent 22rem),
        linear-gradient(135deg, rgba(17, 24, 39, 0.03), rgba(255, 255, 255, 0));
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-media img {
    width: 100%;
    min-height: 470px;
    object-fit: cover;
    border-radius: 38px;
    box-shadow: 0 34px 80px rgba(17, 24, 39, 0.18);
}

.about-badge {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 18px;
    border-radius: 24px;
    color: #ffffff;
    background: rgba(3, 7, 18, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
}

.about-badge strong,
.about-badge span {
    display: block;
}

.about-badge span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.75);
}

.about-copy p {
    color: #4b5563;
}

.trust-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.trust-list div {
    position: relative;
    padding: 18px 18px 18px 54px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
}

.trust-list div::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 20px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #111827;
    background: #f59e0b;
    font-size: 0.85rem;
    font-weight: 900;
}

.trust-list strong,
.trust-list span {
    display: block;
}

.trust-list strong {
    color: var(--primary);
}

.trust-list span {
    margin-top: 3px;
    color: #6b7280;
    font-size: 0.92rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-card {
    padding: 24px;
    border-radius: 30px;
}

.process-card span {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 18px;
    color: #111827;
    background: #f59e0b;
    font-weight: 900;
}

.process-card p {
    color: #6b7280;
}

.portfolio-section {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.035), rgba(255, 247, 237, 0.6));
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.filter-btn {
    border: 0;
    padding: 10px 16px;
    border-radius: 999px;
    color: #4b5563;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08);
    cursor: pointer;
    font-weight: 900;
}

.filter-btn.active {
    color: #ffffff;
    background: #050b18;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.portfolio-card {
    position: relative;
    grid-column: span 2;
    height: 360px;
    overflow: hidden;
    border-radius: 32px;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.portfolio-card.hidden {
    display: none;
}

.portfolio-card:hover {
    transform: translateY(-5px);
}

.portfolio-card.wide {
    grid-column: span 4;
    height: 360px;
}

.portfolio-card.tall {
    height: 470px;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 34%, rgba(3, 7, 18, 0.78));
}

.portfolio-card div {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    color: #ffffff;
}

.portfolio-card span {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #111827;
    background: #f59e0b;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.portfolio-card h3 {
    margin-bottom: 8px;
    color: #ffffff;
}

.portfolio-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
}

.packages-section {
    background:
        radial-gradient(circle at 8% 18%, rgba(217, 119, 6, 0.12), transparent 22rem),
        #ffffff;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.package-card {
    padding: 28px;
    border-radius: 32px;
}

.package-card span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #111827;
    background: #f59e0b;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.package-card p {
    color: #6b7280;
}

.package-card .btn {
    margin-top: 22px;
}

.package-card.featured {
    color: #ffffff;
    background:
        radial-gradient(circle at 14% 16%, rgba(245, 158, 11, 0.48), transparent 170px),
        linear-gradient(135deg, #111827, #030712);
}

.package-card.featured h3,
.package-card.featured p,
.package-card.featured li {
    color: #ffffff;
}

.package-card.featured p,
.package-card.featured li {
    opacity: 0.78;
}

.package-card.featured .btn-primary {
    background: #ffffff;
    color: #111827;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-card {
    padding: 26px;
    border-radius: 30px;
}

.stars {
    color: #d97706;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.testimonial-card p {
    color: #4b5563;
}

.testimonial-card strong {
    color: var(--primary);
}

.faq-section {
    background:
        radial-gradient(circle at 10% 10%, rgba(217, 119, 6, 0.14), transparent 20rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 250, 240, 0.9));
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 44px;
    align-items: start;
}

.faq-intro p {
    color: #6b7280;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    border-radius: 24px;
}

.faq-item button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 20px;
    border: 0;
    background: transparent;
    color: var(--primary);
    text-align: left;
    cursor: pointer;
    font-weight: 900;
}

.faq-item button::after {
    content: "+";
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f59e0b;
    color: #111827;
    flex: 0 0 auto;
}

.faq-item.active button::after {
    content: "−";
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: #6b7280;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
}

.contact-section {
    color: #ffffff;
    background:
        radial-gradient(circle at 75% 20%, rgba(217, 119, 6, 0.42), transparent 22rem),
        linear-gradient(135deg, #111827, #030712);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 36px;
    align-items: start;
}

.contact-copy h2,
.contact-copy .eyebrow {
    color: #ffffff;
}

.contact-copy .eyebrow {
    color: #fde68a;
}

.contact-copy p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.74);
}

.contact-methods {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.contact-methods a {
    display: block;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-methods span,
.contact-methods strong {
    display: block;
}

.contact-methods span {
    color: #fde68a;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 900;
}

.contact-methods strong {
    margin-top: 4px;
    color: #ffffff;
}

.contact-form {
    padding: 28px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.96);
}

.form-heading h3 {
    margin-bottom: 8px;
    font-size: 1.7rem;
}

.form-heading p {
    color: #6b7280;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-field {
    margin-bottom: 15px;
}

.form-field label {
    display: block;
    margin-bottom: 7px;
    color: #111827;
    font-size: 0.86rem;
    font-weight: 900;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    border: 1px solid rgba(17, 24, 39, 0.14);
    border-radius: 16px;
    padding: 13px 14px;
    color: #111827;
    background: #ffffff;
    outline: none;
}

.form-field textarea {
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: #d97706;
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.12);
}

.form-success {
    display: none;
    margin: 14px 0 0;
    padding: 12px 14px;
    border-radius: 16px;
    color: #14532d;
    background: #dcfce7;
    font-weight: 800;
}

.form-success.show {
    display: block;
}

.site-footer {
    padding: 26px 0;
    color: #6b7280;
    background: #ffffff;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 0.92rem;
}

.footer-inner p {
    margin: 0;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    color: #ffffff;
    background: #16a34a;
    box-shadow: 0 18px 40px rgba(22, 163, 74, 0.3);
    font-weight: 900;
}

.whatsapp-float::before {
    content: "";
    width: 11px;
    height: 11px;
    margin-right: 9px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2);
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 82px;
    z-index: 80;
    width: 46px;
    height: 46px;
    display: none;
    place-items: center;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: #050b18;
    box-shadow: 0 16px 36px rgba(17, 24, 39, 0.24);
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 900;
}

.back-to-top.show {
    display: grid;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    body {
        padding-top: 70px;
    }

    .header-inner {
        min-height: 70px;
    }

    .nav-toggle {
        display: inline-block;
    }

    .site-nav {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 82px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border-radius: 26px;
        background: #ffffff;
        box-shadow: 0 24px 70px rgba(17, 24, 39, 0.2);
    }

    body.nav-open .site-nav {
        display: flex;
    }

    .site-nav a {
        padding: 14px;
        border-radius: 16px;
    }

    .site-nav a:hover {
        background: #fff7ed;
    }

    .site-nav a::after {
        display: none;
    }

    .nav-cta {
        margin-top: 6px;
        text-align: center;
    }

    .hero-grid,
    .about-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-media,
    .hero-media img {
        min-height: auto;
        height: 520px;
    }

    .service-grid,
    .process-grid,
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-card,
    .portfolio-card.wide {
        grid-column: span 3;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .section-pad {
        padding: 60px 0;
    }

    .brand {
        min-width: auto;
    }

    .brand small {
        display: none;
    }

    h1 {
        font-size: clamp(2.45rem, 13vw, 4rem);
    }

    h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-stats,
    .service-grid,
    .process-grid,
    .package-grid,
    .testimonial-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-media,
    .hero-media img {
        height: 430px;
    }

    .hero-card {
        max-width: 220px;
        padding: 14px;
    }

    .hero-card-top {
        right: 12px;
        top: 24px;
    }

    .hero-card-bottom {
        left: 12px;
        bottom: 24px;
    }

    .ticker-group {
        gap: 28px;
        padding-right: 28px;
    }

    .ticker-group span::before {
        margin-right: 28px;
    }

    .about-media img {
        min-height: 360px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card,
    .portfolio-card.wide,
    .portfolio-card.tall {
        grid-column: auto;
        height: 340px;
    }

    .footer-inner {
        display: block;
    }

    .footer-inner p + p {
        margin-top: 8px;
    }

    .whatsapp-float {
        right: 12px;
        bottom: 12px;
    }

    .back-to-top {
        right: 12px;
        bottom: 76px;
    }
}