/* =========================
   GLOBAL
========================= */
h1,
h2,
h3,
h4,
.logo {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 1.4rem;
font-weight: 700;
letter-spacing: -0.5px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: #080b10;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: min(1120px, 90%);
    margin: 0 auto;
}

.hidden {
    display: none;
}

section {
    scroll-margin-top: 90px;
}
/* =========================
   HEADER / NAV
========================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(8, 11, 16, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo span {
    color: #55e6a5;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.desktop-nav a {
    color: #c7cbd1;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;

    transition: 0.2s ease;
}

.desktop-nav a:hover {
    color: #ffffff;
}

.desktop-nav .nav-button {
    color: #07100c;
    background: #55e6a5;

    padding: 10px 18px;
    border-radius: 8px;
}

.desktop-nav .nav-button:hover {
    color: #07100c;
    transform: translateY(-1px);
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 140px 0 80px;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(85, 230, 165, 0.12),
            transparent 32%
        ),
        #080b10;
}

.hero-container {
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 820px;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    color: #55e6a5;

    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero h1 {
    max-width: 900px;

    font-size: clamp(3rem, 7vw, 6.2rem);
    line-height: 0.98;

    letter-spacing: -4px;
    font-weight: 800;
}

.hero h1 span {
    color: #55e6a5;
}

.hero-description {
    max-width: 640px;

    margin-top: 28px;

    color: #a9afb8;

    font-size: 1.2rem;
    line-height: 1.7;
}


/* =========================
   HERO BUTTONS
========================= */

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;

    margin-top: 36px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 24px;

    border-radius: 8px;

    text-decoration: none;
    font-weight: 700;

    transition: 0.2s ease;
}

.primary-button {
    color: #07100c;
    background: #55e6a5;
}

.primary-button:hover {
    transform: translateY(-2px);
}

.secondary-button {
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.18);

    background: rgba(255, 255, 255, 0.03);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}


/* =========================
   HERO FEATURES
========================= */

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;

    margin-top: 40px;

    color: #7f8791;

    font-size: 0.85rem;
    font-weight: 600;
}

/* =========================
   PORTFOLIO
========================= */

.work {
    padding: 120px 0;
    background: #0c1016;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -3px;
}

.section-heading h2 span {
    color: #55e6a5;
}

.section-heading > p:last-child {
    max-width: 620px;
    margin-top: 22px;

    color: #9299a3;
    font-size: 1.05rem;
}

.project-image-preview {
    padding: 0;
    overflow: hidden;
}

.project-image-preview img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: top center;

    transition: transform 0.4s ease;
}

.project-card:hover .project-image-preview img {
    transform: scale(1.025);
}

/* PROJECT GRID */

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.project-card {
    min-width: 0;
    height: 100%;
}

.project-card {
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;

    background: #10151d;

    transition: transform 0.25s ease,
                border-color 0.25s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(85, 230, 165, 0.4);
}


/* PREVIEW */

.project-preview {
    width: 100%;
    aspect-ratio: 16 / 10;
    padding: 20px;

    background:
        radial-gradient(
            circle at 70% 20%,
            rgba(85, 230, 165, 0.16),
            transparent 35%
        ),
        #080b10;
}

.preview-placeholder {
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;

    color: #ffffff;
}

.preview-placeholder span {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.preview-placeholder p {
    margin-top: 8px;
    color: #737b86;
    font-size: 0.85rem;
}


/* PROJECT INFO */

.project-info {
    padding: 28px;
}

.project-type {
    margin-bottom: 10px;

    color: #55e6a5;

    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.project-info h3 {
    font-size: 1.5rem;
}

.project-description {
    margin-top: 12px;

    color: #8f97a2;
    font-size: 0.95rem;
}

.project-link {
    display: inline-block;
    margin-top: 24px;

    color: #ffffff;

    text-decoration: none;
    font-weight: 700;
}

.project-link:hover {
    color: #55e6a5;
}

/* =========================
   SERVICES
========================= */

.services {
    padding: 120px 0;
    background: #080b10;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.service-card {
    min-height: 280px;
    padding: 32px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.025);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);

    border-color: rgba(85, 230, 165, 0.35);

    background: rgba(85, 230, 165, 0.035);
}

.service-number {
    margin-bottom: 42px;

    color: #55e6a5;

    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.service-card h3 {
    margin-bottom: 14px;

    font-size: 1.25rem;
    line-height: 1.3;
}

.service-card p {
    color: #8f97a2;

    font-size: 0.93rem;
    line-height: 1.7;
}

/* =========================
   PROCESS
========================= */

.process {
    padding: 120px 0;

    background: #0c1016;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.process-step {
    display: grid;

    grid-template-columns: 100px 1fr;

    gap: 30px;

    padding: 38px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    transition: padding 0.25s ease;
}

.process-step:hover {
    padding-left: 12px;
}

.process-number {
    color: #55e6a5;

    font-size: 2rem;
    font-weight: 800;
    
    letter-height: 1;
    letter-spacing: -1px;

    padding-top: 2px;
}

.process-content {
    max-width: 700px;
}

.process-content h3 {
    margin-bottom: 10px;

    font-size: 1.45rem;
}

.process-content p {
    color: #8f97a2;

    font-size: 0.96rem;
    line-height: 1.7;
}

/* =========================
   PRICING
========================= */

.pricing {
    padding: 120px 0;
    background: #080b10;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.pricing-card {
    padding: 42px;

    border: 1px solid rgba(85, 230, 165, 0.3);
    border-radius: 18px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(85, 230, 165, 0.1),
            transparent 32%
        ),
        #10151d;
}

.pricing-top {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
}

.pricing-label {
    margin-bottom: 8px;

    color: #55e6a5;

    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.pricing-card h3 {
    font-size: 1.8rem;
}

.price {
    text-align: right;
}

.price .starting {
    display: block;

    margin-bottom: 2px;

    color: #737b86;

    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.price div {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.price .dollar {
    font-size: 1.5rem;
    color: #55e6a5;
}

.pricing-description {
    max-width: 520px;

    margin: 30px 0;

    color: #9299a3;
    line-height: 1.7;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;

    padding: 28px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    color: #c5cad1;

    font-size: 0.9rem;
}

.pricing-button {
    margin-top: 30px;
}


/* PRICING DETAILS */

.pricing-details {
    display: flex;
    flex-direction: column;
}

.pricing-detail {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 18px;

    padding: 24px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-detail > span {
    color: #55e6a5;

    font-size: 0.72rem;
    font-weight: 800;
}

.pricing-detail h4 {
    margin-bottom: 6px;

    font-size: 1rem;
}

.pricing-detail p {
    color: #858d98;

    font-size: 0.88rem;
    line-height: 1.6;
}

/* =========================
   ABOUT
========================= */

.about {
    padding: 120px 0;

    background: #0c1016;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-layout {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;
}

.about-heading h2 {
    max-width: 520px;

    font-size: clamp(2.7rem, 5vw, 4.5rem);

    line-height: 1.05;
    letter-spacing: -3px;
}

.about-heading h2 span {
    color: #55e6a5;
}

.about-content {
    max-width: 620px;
}

.about-content > p {
    margin-bottom: 20px;

    color: #9299a3;

    line-height: 1.8;
}

.about-content .about-lead {
    color: #ffffff;

    font-size: 1.25rem;
    line-height: 1.65;
}


/* ABOUT POINTS */

.about-points {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    margin-top: 38px;
}

.about-point {
    padding-top: 18px;

    border-top: 2px solid #55e6a5;
}

.about-point strong {
    display: block;

    margin-bottom: 5px;

    font-size: 1rem;
}

.about-point span {
    color: #7f8791;

    font-size: 0.78rem;
    line-height: 1.4;
}

/* =========================
   CONTACT
========================= */

.contact {
    padding: 120px 0;

    background:
        radial-gradient(
            circle at 15% 60%,
            rgba(85, 230, 165, 0.08),
            transparent 30%
        ),
        #080b10;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-layout {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 90px;

    align-items: start;
}


/* LEFT SIDE */

.contact-intro h2 {
    max-width: 520px;

    font-size: clamp(2.8rem, 5vw, 4.7rem);

    line-height: 1.03;

    letter-spacing: -3px;
}

.contact-intro h2 span {
    color: #55e6a5;
}

.contact-intro > p {
    max-width: 520px;

    margin-top: 25px;

    color: #9299a3;

    font-size: 1rem;

    line-height: 1.8;
}

.contact-note {
    max-width: 500px;

    margin-top: 45px;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-note span {
    color: #55e6a5;

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 1.4px;
}

.contact-note p {
    margin-top: 10px;

    color: #747d88;

    font-size: 0.85rem;

    line-height: 1.6;
}


/* FORM */

.contact-form-wrapper {
    padding: 38px;

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 18px;

    background: #10151d;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #cbd0d6;

    font-size: 0.78rem;

    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 8px;

    outline: none;

    background: #090d12;

    color: #ffffff;

    font-family: inherit;

    font-size: 0.95rem;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.form-group textarea {
    resize: vertical;

    min-height: 140px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #505863;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #55e6a5;

    background: #0b1016;
}

.submit-button {
    width: 100%;

    border: none;

    cursor: pointer;

    font-size: 0.95rem;
}

.form-disclaimer {
    margin-top: 13px;

    text-align: center;

    color: #666f7a;

    font-size: 0.75rem;
}


/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 70px 0 30px;

    background: #06090d;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
    display: flex;

    justify-content: space-between;

    gap: 60px;

    padding-bottom: 60px;
}

.footer-brand p {
    max-width: 300px;

    margin-top: 14px;

    color: #747d88;

    font-size: 0.9rem;
}

.footer-links {
    display: flex;

    gap: 90px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-column > p {
    margin-bottom: 6px;

    color: #55e6a5;

    font-size: 0.68rem;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.footer-column a {
    color: #969da7;

    text-decoration: none;

    font-size: 0.9rem;

    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #ffffff;
}


/* BOTTOM BAR */

.footer-bottom {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    color: #59616b;

    font-size: 0.75rem;
}

.footer-bottom a {
    color: #969da7;

    text-decoration: none;

    font-size: 0.78rem;

    font-weight: 700;
}

.footer-bottom a:hover {
    color: #55e6a5;
}

/* =========================
   SCROLL REVEAL
========================= */

.reveal {
    opacity: 0;
    transform: translateY(28px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

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


/* Slight delay options */

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}


/* =========================
   ACTIVE NAVIGATION
========================= */

.desktop-nav a.active {
    color: #55e6a5;
}

/* =========================
   PROJECT VIEWER
========================= */

.project-open {
    padding: 0;

    border: none;

    background: none;

    font-family: inherit;

    cursor: pointer;
}


/* MODAL */

.project-modal {
    position: fixed;
    inset: 0;

    z-index: 5000;

    display: none;

    padding: 40px;

    overflow-y: auto;
}

.project-modal.open {
    display: block;
}

.project-modal-backdrop {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.82);

    backdrop-filter: blur(8px);
}


/* CONTENT */

.project-modal-content {
    position: relative;

    z-index: 1;

    width: min(1050px, 100%);

    margin: 20px auto;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 18px;

    background: #0c1016;
}


/* HEADER */

.project-modal-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 32px 36px;
}

.project-modal-label {
    margin-bottom: 5px;

    color: #55e6a5;

    font-size: 0.68rem;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.project-modal-header h2 {
    font-size: 2rem;
}

.project-modal-close {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 50%;

    background: transparent;

    color: #ffffff;

    font-size: 1.6rem;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.project-modal-close:hover {
    background: rgba(255, 255, 255, 0.08);

    transform: rotate(90deg);
}


/* WEBSITE IMAGE */

.project-modal-image {
    width: 100%;

    overflow: hidden;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.project-modal-image img {
    display: block;

    width: 100%;
    height: auto;
}


/* DETAILS */

.project-modal-details {
    display: grid;

    grid-template-columns: 1.4fr 0.6fr;

    gap: 70px;

    padding: 55px 36px;
}

.project-modal-description h3 {
    max-width: 580px;

    margin-bottom: 18px;

    font-size: 1.8rem;

    line-height: 1.25;
}

.project-modal-description > p:last-child {
    max-width: 600px;

    color: #9299a3;

    line-height: 1.8;
}

.project-modal-features ul {
    list-style: none;

    margin-top: 8px;
}

.project-modal-features li {
    padding: 9px 0;

    color: #a5acb5;

    font-size: 0.9rem;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.project-modal-features li::before {
    content: "✓";

    margin-right: 10px;

    color: #55e6a5;
}


/* CTA */

.project-modal-cta {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 35px 36px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    background: #10151d;
}

.project-modal-cta p {
    margin-bottom: 4px;

    color: #7f8791;

    font-size: 0.8rem;
}

.project-modal-cta h3 {
    font-size: 1.25rem;
}

/* =========================
   SUCCESS PAGE
========================= */

.success-page {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(85, 230, 165, 0.1),
            transparent 35%
        ),
        #080b10;
}

.success-container {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    width: min(700px, 90%);

    margin: 0 auto;

    padding: 60px 0;
}

.success-card {
    width: 100%;

    padding: 60px;

    text-align: center;

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 18px;

    background: #10151d;
}

.success-check {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    margin: 0 auto 28px;

    border-radius: 50%;

    background: rgba(85, 230, 165, 0.1);

    color: #55e6a5;

    font-size: 1.7rem;
    font-weight: 800;
}

.success-card h1 {
    margin-bottom: 18px;

    font-size: clamp(2.5rem, 6vw, 4rem);

    line-height: 1.05;
    letter-spacing: -2px;
}

.success-card > p:not(.eyebrow) {
    max-width: 520px;

    margin: 0 auto 32px;

    color: #9299a3;

    line-height: 1.8;
}

.contact-phone {
    margin-top: 28px;
}

.contact-phone span {
    display: block;

    margin-bottom: 8px;

    color: #55e6a5;

    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.contact-phone a {
    display: inline-block;

    color: #ffffff;

    font-family: "Space Grotesk", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;

    text-decoration: none;

    transition: color 0.2s ease;
}

.contact-phone a:hover {
    color: #55e6a5;
}

.contact-phone p {
    margin-top: 4px;

    color: #747d88;

    font-size: 0.8rem;
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 22px;

    color: #747d88;

    font-size: 0.82rem;
}

.hero-contact a {
    color: #ffffff;

    font-weight: 700;
    text-decoration: none;

    transition: color 0.2s ease;
}

.hero-contact a:hover {
    color: #55e6a5;
}

/* =========================
   MOBILE NAVIGATION
========================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 9px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;

    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 22px;
    height: 2px;

    margin: 5px auto;

    background: #ffffff;

    border-radius: 0;

    transform-origin: center;

    transition: transform 0.25s ease;
}


/* MOBILE MENU */

.mobile-menu {
    position: fixed;

    top: 68px;
    left: 0;

    width: 100%;

    z-index: 999;

    display: none;
    flex-direction: column;

    padding: 18px 5% 25px;

    background: rgba(8, 11, 16, 0.98);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    padding: 15px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    color: #c7cbd1;

    text-decoration: none;

    font-size: 1rem;
    font-weight: 600;
}

.mobile-menu a:last-child {
    margin-top: 12px;

    padding: 14px;

    border: none;
    border-radius: 8px;

    background: #55e6a5;

    color: #07100c;

    text-align: center;
}


/* HAMBURGER → X */

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    visibility: hidden;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 760px) {

        .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
    .nav-container {
        min-height: 68px;
    }

    .hero {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 15vw, 5rem);
        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;
        gap: 8px;
    }
    .work {
        padding: 80px 0;
    }

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

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        letter-spacing: -2px;
    }    .services {
        padding: 80px 0;
    }

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

    .service-card {
        min-height: auto;
    }    .process {
        padding: 80px 0;
    }

    .process-step {
        grid-template-columns: 50px 1fr;
        gap: 16px;
        padding: 28px 0;
    }

    .process-step:hover {
        padding-left: 0;
    }

    .process-content h3 {
        font-size: 1.2rem;
    }    .pricing {
        padding: 80px 0;
    }

    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card {
        padding: 28px 22px;
    }

    .pricing-top {
        flex-direction: column;
        gap: 20px;
    }

    .price {
        text-align: left;
    }

    .pricing-features {
        grid-template-columns: 1fr;
    }

    .pricing-button {
        width: 100%;
    }    .about {
        padding: 80px 0;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-heading h2 {
        letter-spacing: -2px;
    }

    .about-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }    .contact {
        padding: 80px 0;
    }

    .contact-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact-intro h2 {
        letter-spacing: -2px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

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

        gap: 0;
    }    .site-footer {
        padding-top: 55px;
    }

    .footer-top {
        flex-direction: column;

        gap: 40px;

        padding-bottom: 40px;
    }

    .footer-links {
        gap: 60px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }    .project-modal {
        padding: 12px;
    }

    .project-modal-content {
        margin: 10px auto;
    }

    .project-modal-header {
        padding: 22px 20px;
    }

    .project-modal-header h2 {
        font-size: 1.45rem;
    }

    .project-modal-details {
        grid-template-columns: 1fr;

        gap: 40px;

        padding: 40px 20px;
    }

    .project-modal-description h3 {
        font-size: 1.45rem;
    }

    .project-modal-cta {
        flex-direction: column;

        align-items: flex-start;

        padding: 28px 20px;
    }

    .modal-contact-button {
        width: 100%;
    }    .success-card {
        padding: 40px 22px;
    }    .pricing,
    .about {
        min-height: auto;
        height: auto;
    }.hero-contact {
    flex-wrap: wrap;
    gap: 6px;

    font-size: 0.78rem;
}}
