/* =========================================================
   BAILTECH AI
   WHITE / BLUE / GRAY DESIGN
   RESPONSIVE VERSION
========================================================= */

/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #172033;
    line-height: 1.6;
    overflow-x: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================================
   VARIABLES
========================================================= */

:root {
    --blue: #1769e0;
    --blue-dark: #0b3d91;
    --blue-light: #eaf3ff;

    --dark: #172033;
    --gray: #5f6b7a;
    --gray-light: #f5f7fa;

    --border: #e2e7ee;

    --white: #ffffff;

    --shadow:
        0 15px 45px rgba(22, 47, 84, 0.09);
}

/* =========================================================
   CONTAINER
========================================================= */

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

/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

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

    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

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

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

    position: relative;
}

.logo {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--dark);

    white-space: nowrap;
}

.logo span {
    color: var(--blue);
}

/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

nav a {
    color: #4f5c6c;

    font-size: 0.92rem;
    font-weight: 600;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}

nav a:hover {
    color: var(--blue);
}

/* =========================================================
   HAMBURGER BUTTON
========================================================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: #ffffff;
    color: var(--dark);

    font-size: 1.5rem;
    line-height: 1;

    cursor: pointer;

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

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

    -webkit-tap-highlight-color: transparent;
}

.menu-toggle:hover {
    color: var(--blue);
    border-color: #b8c7da;
}

.menu-toggle:focus {
    outline: none;
}

.menu-toggle:focus-visible {
    outline: 3px solid rgba(23, 105, 224, 0.15);
}

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

.hero {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 20%,
            #e7f1ff 0%,
            transparent 32%
        ),
        #ffffff;

    padding: 105px 0 110px;
}

.hero-content {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 80px;
}

.hero-badge {
    display: inline-block;

    padding: 8px 14px;
    margin-bottom: 22px;

    border: 1px solid #c9dcf7;
    border-radius: 100px;

    background: #f4f8ff;

    color: var(--blue);

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.hero h1 {
    max-width: 700px;

    font-size: clamp(3rem, 6vw, 5.3rem);

    line-height: 1.03;

    letter-spacing: -0.065em;

    color: var(--dark);
}

.hero h1 span {
    color: var(--blue);
}

.hero-text > p {
    max-width: 650px;

    margin: 27px 0 35px;

    color: var(--gray);

    font-size: 1.08rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;
}

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

.btn {
    display: inline-flex;

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

    min-height: 52px;

    padding: 0 25px;

    border-radius: 8px;

    font-size: 0.92rem;
    font-weight: 700;

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

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

.btn-primary {
    background: var(--blue);
    color: white;

    box-shadow:
        0 12px 25px rgba(23, 105, 224, 0.22);
}

.btn-primary:hover {
    background: var(--blue-dark);
}

.btn-secondary {
    background: white;

    color: var(--dark);

    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: #b8c7da;
}

.btn-white {
    background: white;
    color: var(--blue);
}

.btn-white:hover {
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.15);
}

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

.hero-card {
    overflow: hidden;

    background: white;

    border: 1px solid var(--border);
    border-radius: 16px;

    box-shadow: var(--shadow);

    transform: rotate(1deg);
}

.window-top {
    height: 44px;

    display: flex;
    align-items: center;

    gap: 7px;

    padding: 0 16px;

    background: #f3f5f8;

    border-bottom: 1px solid var(--border);
}

.window-top span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #c4ccd7;
}

.dashboard-preview {
    min-height: 370px;

    padding: 50px 45px;

    background:
        linear-gradient(
            135deg,
            #f8fbff,
            #edf4fc
        );
}

.preview-label {
    color: var(--blue);

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

    letter-spacing: 0.15em;
}

.dashboard-preview h3 {
    margin-top: 15px;

    font-size: 2.25rem;

    line-height: 1.1;

    letter-spacing: -0.045em;
}

.preview-line {
    width: 55px;
    height: 4px;

    margin: 30px 0;

    background: var(--blue);

    border-radius: 10px;
}

.preview-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.preview-grid div {
    padding: 18px;

    background: white;

    border: 1px solid #e0e7f0;

    border-radius: 8px;
}

.preview-grid strong,
.preview-grid small {
    display: block;
}

.preview-grid strong {
    color: var(--blue);

    font-size: 1.25rem;
}

.preview-grid small {
    color: var(--gray);

    font-size: 0.75rem;
}

/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: #fafbfd;
}

.trust-content {
    display: grid;

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

.trust-content > div {
    padding: 24px;

    border-right: 1px solid var(--border);
}

.trust-content > div:last-child {
    border-right: none;
}

.trust-content strong,
.trust-content span {
    display: block;
}

.trust-content strong {
    color: var(--dark);

    font-size: 0.9rem;
}

.trust-content span {
    margin-top: 3px;

    color: var(--gray);

    font-size: 0.76rem;
}

/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 110px 0;
}

.section-heading {
    max-width: 680px;

    margin-bottom: 55px;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--blue);

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

    letter-spacing: 0.15em;
}

.section-heading h2,
.about-content h2,
.contact-info h2 {
    font-size: clamp(2.3rem, 4vw, 3.6rem);

    line-height: 1.08;

    letter-spacing: -0.055em;
}

.section-heading h2 span,
.about-content h2 span,
.contact-info h2 span,
.cta h2 span {
    color: var(--blue);
}

.section-heading p {
    margin-top: 18px;

    color: var(--gray);
}

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

.services {
    background: white;
}

.services-grid {
    display: grid;

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

    gap: 18px;
}

.service-card {
    position: relative;

    padding: 34px 28px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 12px;

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

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

    border-color: #c8d9ef;

    box-shadow: var(--shadow);
}

.service-number {
    position: absolute;

    top: 25px;
    right: 25px;

    color: #b7c0cc;

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

.service-icon {
    width: 50px;
    height: 50px;

    display: flex;

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

    margin-bottom: 25px;

    background: var(--blue-light);

    color: var(--blue);

    border-radius: 10px;

    font-size: 1.4rem;
    font-weight: 700;
}

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

    font-size: 1.25rem;
}

.service-card p {
    min-height: 125px;

    color: var(--gray);

    font-size: 0.9rem;
}

.service-card ul {
    margin-top: 20px;
    padding-top: 20px;

    border-top: 1px solid var(--border);

    list-style: none;
}

.service-card li {
    position: relative;

    padding-left: 17px;

    margin: 7px 0;

    color: #536071;

    font-size: 0.78rem;
}

.service-card li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: var(--blue);

    font-weight: 800;
}

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

.process-section {
    background: var(--gray-light);
}

.process-grid {
    display: grid;

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

    gap: 25px;
}

.process-item {
    padding-right: 20px;
}

.process-circle {
    width: 54px;
    height: 54px;

    display: flex;

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

    margin-bottom: 22px;

    border-radius: 50%;

    background: var(--blue);

    color: white;

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

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

    font-size: 1.2rem;
}

.process-item p {
    color: var(--gray);

    font-size: 0.88rem;
}

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

.portfolio {
    background: white;
}

.portfolio-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 24px;
}

.portfolio-card {
    overflow: hidden;

    min-width: 0;

    background: white;

    border: 1px solid var(--border);

    border-radius: 14px;

    box-shadow:
        0 8px 30px rgba(22, 47, 84, 0.04);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.portfolio-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 40px rgba(22, 47, 84, 0.09);
}

.featured-project {
    grid-column: span 2;
}

.project-preview {
    min-height: 320px;

    display: flex;

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

    padding: 45px;

    background: #eef5ff;
}

.project-browser {
    width: 90%;

    max-width: 100%;

    overflow: hidden;

    background: white;

    border: 1px solid #d5dfeb;

    border-radius: 9px;

    box-shadow:
        0 20px 45px rgba(25, 58, 100, 0.12);
}

.browser-bar {
    height: 30px;

    display: flex;

    align-items: center;

    gap: 5px;

    padding: 0 10px;

    background: #f4f6f8;

    border-bottom: 1px solid var(--border);
}

.browser-bar span {
    width: 6px;
    height: 6px;

    background: #b7c0ca;

    border-radius: 50%;
}

.project-screen {
    min-height: 205px;

    padding: 30px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #edf5ff
        );
}

.screen-logo {
    color: #182438;

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

.screen-logo b {
    color: var(--blue);
}

.screen-title {
    max-width: 350px;

    margin-top: 25px;

    color: #1b2d46;

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

    line-height: 1.1;
}

.screen-boxes {
    display: flex;

    gap: 8px;

    margin-top: 25px;
}

.screen-boxes div {
    width: 65px;
    height: 22px;

    border-radius: 4px;

    background: #dbe9fa;
}

.project-info {
    padding: 30px;
}

.project-info > span {
    color: var(--blue);

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

    letter-spacing: 0.1em;
}

.project-info h3 {
    margin: 8px 0;

    font-size: 1.5rem;
}

.project-info p {
    max-width: 700px;

    color: var(--gray);

    font-size: 0.88rem;
}

.project-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 18px;
}

.project-tags span {
    padding: 6px 10px;

    background: var(--gray-light);

    border-radius: 5px;

    color: #536071;

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

.project-link {
    display: block;
}

/* =========================================================
   FACE DOCTRESS PROJECT
========================================================= */

.beauty-preview {
    min-height: 310px;

    display: flex;

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

    background: #111111;
}

.beauty-content {
    text-align: center;

    color: white;
}

.beauty-content small,
.beauty-content strong,
.beauty-content span {
    display: block;
}

.beauty-content small {
    letter-spacing: 0.3em;

    font-size: 0.65rem;
}

.beauty-content strong {
    margin: 8px 0;

    font-size: 2.3rem;

    letter-spacing: 0.05em;
}

.beauty-line {
    width: 55px;
    height: 2px;

    margin: 15px auto;

    background: #c8a96b;
}

.beauty-content span {
    color: #c8a96b;

    font-size: 0.58rem;

    letter-spacing: 0.16em;
}

.project-visit {
    display: inline-flex;

    margin-top: 18px;

    color: var(--blue);

    font-size: 0.8rem;
    font-weight: 700;

    transition: color 0.2s ease;
}

.project-visit:hover {
    color: var(--blue-dark);
}



/* =========================================================
   GENESIS & CO. LEGACY SERVICES PROJECT
========================================================= */

.genesis-preview {
    min-height: 310px;

    display: flex;

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

    padding: 35px;

    background:
        linear-gradient(
            135deg,
            #163c2c 0%,
            #245c43 100%
        );
}

.genesis-content {
    width: 100%;
    max-width: 380px;

    padding: 45px 30px;

    text-align: center;

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

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

    border-radius: 8px;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.14);
}

.genesis-content small,
.genesis-content strong,
.genesis-content span {
    display: block;
}

.genesis-content small {
    margin-bottom: 10px;

    color: #d7c28c;

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

    letter-spacing: 0.22em;
}

.genesis-content strong {
    color: #ffffff;

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

    line-height: 1.15;

    letter-spacing: 0.05em;
}

.genesis-line {
    width: 58px;
    height: 2px;

    margin: 20px auto;

    background: #d7c28c;
}

.genesis-content span {
    color:
        rgba(255, 255, 255, 0.78);

    font-size: 0.62rem;
    font-weight: 700;

    line-height: 1.7;

    letter-spacing: 0.14em;
}


/* =========================================================
   COMING PROJECT
========================================================= */

.coming-project {
    min-height: 310px;

    display: flex;

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

    background: #fafbfd;

    border-style: dashed;
}

.coming-content {
    padding: 40px;

    text-align: center;
}

.coming-icon {
    width: 55px;
    height: 55px;

    display: flex;

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

    margin: 0 auto 18px;

    border-radius: 50%;

    background: var(--blue-light);

    color: var(--blue);

    font-size: 1.5rem;
}

.coming-content h3 {
    font-size: 1.3rem;
}

.coming-content p {
    max-width: 300px;

    margin: 10px auto 18px;

    color: var(--gray);

    font-size: 0.85rem;
}

.coming-content a {
    color: var(--blue);

    font-size: 0.82rem;
    font-weight: 700;
}

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

.about {
    background: var(--gray-light);
}

.about-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    align-items: center;

    gap: 90px;
}

.about-image {
    min-height: 500px;

    display: flex;

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

    padding: 25px;

    background:
        linear-gradient(
            145deg,
            #dceaff,
            #f4f8fd
        );

    border-radius: 18px;

    overflow: hidden;
}

.about-photo-card {
    width: 100%;

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    background: white;

    border: 1px solid #dce4ed;

    border-radius: 14px;

    box-shadow: var(--shadow);

    overflow: hidden;
}

.about-photo-card img {
    width: 100%;
    height: 410px;

    object-fit: cover;

    object-position: center top;

    background: #ffffff;
}

.about-photo-info {
    width: 100%;

    padding: 18px;

    text-align: center;

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

.about-photo-info strong,
.about-photo-info span {
    display: block;
}

.about-photo-info strong {
    font-size: 1rem;

    color: var(--dark);
}

.about-photo-info span {
    margin-top: 4px;

    color: var(--gray);

    font-size: 0.75rem;
}

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

    color: var(--gray);
}

.about-highlights {
    display: flex;

    gap: 12px;

    margin-top: 35px;
}

.about-highlights div {
    flex: 1;

    padding: 16px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 8px;
}

.about-highlights strong,
.about-highlights span {
    display: block;
}

.about-highlights strong {
    color: var(--blue);

    font-size: 0.75rem;
}

.about-highlights span {
    margin-top: 4px;

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

/* =========================================================
   CTA
========================================================= */

.cta {
    padding: 75px 0;

    background:
        linear-gradient(
            120deg,
            #0d4fae,
            #1769e0
        );

    color: white;
}

.cta-content {
    display: flex;

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

    gap: 50px;
}

.cta .eyebrow {
    color: #cfe3ff;
}

.cta h2 {
    max-width: 700px;

    font-size: clamp(2.2rem, 4vw, 3.6rem);

    line-height: 1.08;

    letter-spacing: -0.05em;
}

.cta h2 span {
    color: white;
}

.cta p {
    max-width: 600px;

    margin-top: 15px;

    color: #dbeaff;
}

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

.contact {
    background: white;
}

.contact-grid {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 80px;
}

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

    margin-top: 20px;

    color: var(--gray);
}

.contact-details {
    margin-top: 35px;
}

.contact-detail {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 18px;
}

.contact-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;

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

    background: var(--blue-light);

    color: var(--blue);

    border-radius: 8px;

    font-weight: 800;
}

.contact-detail span,
.contact-detail strong {
    display: block;
}

.contact-detail span {
    color: var(--gray);

    font-size: 0.68rem;
}

.contact-detail strong {
    margin-top: 2px;

    font-size: 0.85rem;

    word-break: break-word;
}

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

.contact-form {
    padding: 35px;

    background: #fafbfd;

    border: 1px solid var(--border);

    border-radius: 14px;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;
}

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

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: #354153;

    font-size: 0.75rem;
    font-weight: 700;
}

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

    padding: 13px 14px;

    background: white;

    border: 1px solid #d9e0e8;

    border-radius: 7px;

    color: var(--dark);

    outline: none;

    transition: 0.2s ease;
}

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

    box-shadow:
        0 0 0 3px rgba(23, 105, 224, 0.09);
}

.form-group textarea {
    resize: vertical;

    min-height: 140px;
}

.form-submit {
    width: 100%;

    border: none;

    cursor: pointer;
}

.form-note {
    margin-top: 12px;

    text-align: center;

    color: #788393;

    font-size: 0.68rem;
}

.form-success {
    display: none;

    margin-top: 15px;

    padding: 12px;

    border-radius: 7px;

    background: #eef8f0;

    color: #24713b;

    font-size: 0.8rem;

    text-align: center;
}

.form-success.show {
    display: block;
}

/* =========================================================
   REVIEWS
========================================================= */

.reviews {
    background: var(--gray-light);
}

.reviews-heading {
    max-width: 700px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

/* =========================================================
   REVIEWS LAYOUT
========================================================= */

.reviews-layout {
    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    gap: 30px;

    align-items: start;
}

/* =========================================================
   PUBLIC REVIEWS
========================================================= */

.public-reviews {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.public-reviews-header {
    margin-bottom: 5px;
}

.public-reviews-header h3 {
    margin-top: 5px;

    font-size: 1.6rem;

    color: var(--dark);
}

.public-reviews-header p {
    margin-top: 7px;

    color: var(--gray);

    font-size: 0.88rem;
}

/* =========================================================
   REVIEW CARD
========================================================= */

.review-card {
    position: relative;

    padding: 32px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 14px;

    box-shadow:
        0 8px 30px rgba(22, 47, 84, 0.05);

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

.review-card:hover {
    transform: translateY(-4px);

    border-color: #c8d9ef;

    box-shadow:
        0 15px 40px rgba(22, 47, 84, 0.09);
}

/* =========================================================
   REVIEW CARD TOP
========================================================= */

.review-card-top {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 15px;
}

/* =========================================================
   STARS
========================================================= */

.review-stars {
    color: #f4b400;

    font-size: 1.05rem;

    letter-spacing: 3px;

    line-height: 1;
}

/* =========================================================
   VERIFIED REVIEW
========================================================= */

.review-verified {
    display: inline-flex;

    align-items: center;

    padding: 6px 10px;

    border-radius: 5px;

    background: #eef8f0;

    color: #24713b;

    font-size: 0.65rem;

    font-weight: 700;

    white-space: nowrap;
}

/* =========================================================
   REVIEW TEXT
========================================================= */

.review-text {
    margin: 18px 0 0;

    color: #4f5c6c;

    font-size: 0.92rem;

    line-height: 1.75;
}

/* =========================================================
   REVIEW AUTHOR
========================================================= */

.review-author {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid var(--border);
}

.review-author-icon {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: flex;

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

    border-radius: 50%;

    background: var(--blue-light);

    color: var(--blue);

    font-size: 0.75rem;

    font-weight: 800;
}

.review-author strong {
    display: block;

    color: var(--dark);

    font-size: 0.82rem;
}

.review-author span {
    display: block;

    margin-top: 3px;

    color: var(--gray);

    font-size: 0.7rem;
}

/* =========================================================
   REVIEW DATE
========================================================= */

.review-date {
    margin-top: 3px;

    color: #8a94a3;

    font-size: 0.65rem;
}

/* =========================================================
   REVIEW FORM CARD
========================================================= */

.review-form-card {
    padding: 32px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 14px;

    box-shadow:
        0 8px 30px rgba(22, 47, 84, 0.05);
}

.review-form-header {
    margin-bottom: 25px;
}

.review-form-header h3 {
    margin-top: 5px;

    color: var(--dark);

    font-size: 1.6rem;
}

.review-form-header p {
    margin-top: 8px;

    color: var(--gray);

    font-size: 0.85rem;
}

/* =========================================================
   REVIEW FORM
========================================================= */

.review-form-card .form-group {
    margin-bottom: 18px;
}

.review-form-card .form-group label {
    display: block;

    margin-bottom: 7px;

    color: #354153;

    font-size: 0.75rem;

    font-weight: 700;
}

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

    padding: 13px 14px;

    background: white;

    border: 1px solid #d9e0e8;

    border-radius: 7px;

    color: var(--dark);

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.review-form-card input:focus,
.review-form-card textarea:focus,
.review-form-card select:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 3px rgba(23, 105, 224, 0.09);
}

.review-form-card textarea {
    min-height: 145px;

    resize: vertical;
}

/* =========================================================
   REVIEW SUBMIT BUTTON
========================================================= */

.review-submit {
    width: 100%;

    margin-top: 5px;

    border: none;

    cursor: pointer;
}

.review-submit:disabled {
    opacity: 0.65;

    cursor: not-allowed;

    transform: none;
}

/* =========================================================
   REVIEW SUCCESS MESSAGE
========================================================= */

.review-success {
    display: none;

    margin-top: 18px;

    padding: 14px;

    border-radius: 8px;

    background: #eef8f0;

    color: #24713b;

    font-size: 0.8rem;

    line-height: 1.5;

    text-align: center;
}

.review-success.show {
    display: block;
}

/* =========================================================
   REVIEW FORM NOTE
========================================================= */

.review-form-card .form-note {
    margin-top: 12px;

    color: #788393;

    font-size: 0.68rem;

    line-height: 1.5;

    text-align: center;
}

/* =========================================================
   REVIEW EMPTY STATE
========================================================= */

.review-placeholder {
    padding: 45px 30px;

    text-align: center;

    background: white;

    border: 1px dashed #cbd6e3;

    border-radius: 14px;
}

.review-placeholder-icon {
    width: 58px;
    height: 58px;

    display: flex;

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

    margin: 0 auto 18px;

    border-radius: 50%;

    background: var(--blue-light);

    color: #f4b400;

    font-size: 1.4rem;
}

.review-placeholder h3 {
    color: var(--dark);

    font-size: 1.3rem;
}

.review-placeholder p {
    max-width: 430px;

    margin: 10px auto 22px;

    color: var(--gray);

    font-size: 0.85rem;
}

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

.footer {
    padding-top: 65px;

    background: #101827;

    color: white;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 55px;
}

.footer-logo {
    color: white;
}

.footer > .container > div:first-child p {
    max-width: 300px;

    margin-top: 13px;

    color: #98a4b4;

    font-size: 0.82rem;
}

.footer-links {
    display: flex;

    flex-direction: column;

    gap: 9px;
}

.footer-links h4 {
    margin-bottom: 7px;

    font-size: 0.82rem;
}

.footer-links a {
    color: #98a4b4;

    font-size: 0.76rem;

    transition: 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 20px 0;

    border-top: 1px solid #273244;

    color: #7f8a99;

    font-size: 0.68rem;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .hero-content {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .hero-card {
        width: 100%;

        max-width: 700px;

        margin: 0 auto;
    }

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

    .process-grid {
        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-image {
        min-height: 450px;

        max-width: 650px;

        margin: 0 auto;
    }

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

        gap: 50px;
    }

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

        gap: 35px;
    }

    .public-reviews {
        order: 1;
    }

    .review-form-card {
        order: 2;
    }
}

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

@media (max-width: 750px) {

    html {
        scroll-padding-top: 68px;
    }

    body {
        overflow-x: hidden;
    }

    .container {
        width: 100%;

        max-width: 100%;

        padding-left: 20px;
        padding-right: 20px;
    }

    /* NAVBAR */

    .navbar {
        width: 100%;

        position: sticky;

        top: 0;

        z-index: 9999;
    }

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

        position: relative;

        display: flex;

        align-items: center;

        justify-content: space-between;
    }

    .logo {
        font-size: 1.2rem;

        white-space: nowrap;
    }

    /* HAMBURGER */

    .menu-toggle {
        display: flex;

        position: relative;

        z-index: 10001;

        flex-shrink: 0;

        width: 44px;
        height: 44px;

        padding: 0;

        background: white;

        border: 1px solid var(--border);

        border-radius: 8px;

        color: var(--dark);

        font-size: 1.5rem;
    }

    .menu-toggle:hover {
        background: #f7faff;

        color: var(--blue);
    }

    /* MOBILE NAV */

    nav#navMenu {
        position: absolute;

        top: 100%;

        left: 0;

        right: 0;

        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 0;

        background: #ffffff;

        border-top: 1px solid var(--border);

        border-bottom: 1px solid var(--border);

        box-shadow:
            0 15px 30px rgba(22, 47, 84, 0.12);

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform: translateY(-8px);

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;

        z-index: 10000;
    }

    nav#navMenu.active {
        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: translateY(0);
    }

    nav#navMenu a {
        display: block;

        width: 100%;

        padding: 15px 20px;

        color: #4f5c6c;

        background: #ffffff;

        border-bottom: 1px solid #eef1f5;

        font-size: 0.95rem;

        font-weight: 600;
    }

    nav#navMenu a:last-child {
        border-bottom: none;
    }

    nav#navMenu a:hover,
    nav#navMenu a:focus {
        color: var(--blue);

        background: #f7faff;
    }

    /* HERO */

    .hero {
        width: 100%;

        padding: 75px 0;

        overflow: hidden;
    }

    .hero-content {
        width: 100%;

        display: flex;

        flex-direction: column;

        gap: 40px;
    }

    .hero-text {
        width: 100%;

        min-width: 0;
    }

    .hero h1 {
        width: 100%;

        max-width: 100%;

        font-size: clamp(2.5rem, 10vw, 3.6rem);

        line-height: 1.05;

        word-break: normal;

        overflow-wrap: break-word;
    }

    .hero-text > p {
        width: 100%;

        max-width: 100%;

        font-size: 1rem;
    }

    .hero-buttons {
        width: 100%;

        display: flex;

        flex-direction: column;

        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-card {
        width: 100%;

        max-width: 100%;

        margin: 0;

        transform: none;
    }

    .dashboard-preview {
        min-height: auto;

        padding: 35px 25px;
    }

    .dashboard-preview h3 {
        font-size: 1.8rem;
    }

    /* TRUST */

    .trust-content {
        grid-template-columns: 1fr 1fr;

        gap: 0;
    }

    .trust-content > div {
        padding: 20px;

        border-right: 1px solid var(--border);

        border-bottom: 1px solid var(--border);
    }

    .trust-content > div:nth-child(2n) {
        border-right: none;
    }

    .trust-content > div:nth-last-child(-n + 2) {
        border-bottom: none;
    }

    /* SECTIONS */

    .section {
        padding: 80px 0;
    }

    .section-heading {
        width: 100%;

        max-width: 100%;

        margin-bottom: 40px;
    }

    .section-heading h2,
    .about-content h2,
    .contact-info h2 {
        font-size: clamp(2rem, 8vw, 2.9rem);
    }

    /* SERVICES */

    .services-grid {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .service-card {
        width: 100%;

        min-width: 0;
    }

    .service-card p {
        min-height: auto;
    }

    /* PROCESS */

    .process-grid {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .process-item {
        padding-right: 0;
    }

    /* PORTFOLIO */

    .portfolio-grid {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 20px;
    }

    .portfolio-card {
        width: 100%;

        min-width: 0;
    }

    .featured-project {
        grid-column: span 1;
    }

    .project-preview {
        width: 100%;

        min-height: 250px;

        padding: 25px;

        overflow: hidden;
    }

    .project-browser {
        width: 100%;

        max-width: 100%;
    }

    .project-screen {
        width: 100%;

        max-width: 100%;

        overflow: hidden;

        padding: 25px;
    }

    .screen-title {
        font-size: 1.35rem;
    }

    .screen-boxes {
        flex-wrap: wrap;
    }

    .project-info {
        padding: 25px;
    }

    .beauty-preview {
        min-height: 260px;
    }

    .genesis-preview {
        min-height: 260px;
        padding: 25px;
    }

    .genesis-content {
        padding: 35px 22px;
    }

    .genesis-content strong {
        font-size: 1.45rem;
    }

    .genesis-content span {
        font-size: 0.56rem;
    }


    /* ABOUT */

    .about-grid {
        width: 100%;

        display: flex;

        flex-direction: column;

        gap: 40px;
    }

    .about-image,
    .about-content {
        width: 100%;

        max-width: 100%;

        min-width: 0;
    }

    .about-image {
        min-height: auto;

        padding: 18px;
    }

    .about-photo-card {
        width: 100%;

        max-width: 400px;

        margin: 0 auto;
    }

    .about-photo-card img {
        width: 100%;

        height: 400px;
    }

    /* ABOUT HIGHLIGHTS */

    .about-highlights {
        width: 100%;

        display: flex;

        gap: 12px;
    }

    .about-highlights div {
        min-width: 0;
    }

    /* CTA */

    .cta {
        padding: 65px 0;
    }

    .cta-content {
        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

    .cta-content .btn {
        width: 100%;
    }

    /* CONTACT */

    .contact-grid {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .contact-info,
    .contact-form {
        width: 100%;

        min-width: 0;
    }

    .contact-form {
        padding: 28px 22px;
    }

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

        gap: 0;
    }

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

        max-width: 100%;

        min-width: 0;
    }

    /* REVIEWS */

    .reviews-layout {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 25px;
    }

    .public-reviews,
    .review-form-card {
        width: 100%;

        min-width: 0;
    }

    .review-card {
        padding: 25px;
    }

    .review-form-card {
        padding: 25px;
    }

    .review-card-top {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }

    .review-text {
        font-size: 0.88rem;
    }

    .review-placeholder {
        padding: 35px 22px;
    }

    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }

    .footer-grid > div:first-child {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }
}

/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .container {
        width: 100%;

        padding-left: 16px;

        padding-right: 16px;
    }

    .nav-container {
        min-height: 64px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .hero {
        padding: 65px 0;
    }

    .hero h1 {
        font-size: 2.45rem;

        letter-spacing: -0.055em;
    }

    .hero-text > p {
        font-size: 0.95rem;
    }

    .hero-badge {
        font-size: 0.63rem;

        letter-spacing: 0.08em;
    }

    .dashboard-preview {
        padding: 30px 20px;
    }

    .dashboard-preview h3 {
        font-size: 1.65rem;
    }

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

    .trust-content {
        grid-template-columns: 1fr;
    }

    .trust-content > div,
    .trust-content > div:nth-child(2n),
    .trust-content > div:nth-last-child(-n + 2) {
        border-right: none;

        border-bottom: 1px solid var(--border);
    }

    .trust-content > div:last-child {
        border-bottom: none;
    }

    .section {
        padding: 70px 0;
    }

    .section-heading h2,
    .about-content h2,
    .contact-info h2 {
        font-size: 2.15rem;
    }

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

    .project-preview {
        padding: 18px;
    }

    .project-screen {
        padding: 20px;
    }

    .screen-title {
        font-size: 1.15rem;
    }

    .project-info {
        padding: 22px;
    }

    .beauty-content strong {
        font-size: 1.8rem;
    }

    .beauty-content span {
        font-size: 0.5rem;
    }

    .genesis-preview {
        padding: 18px;
    }

    .genesis-content {
        padding: 30px 18px;
    }

    .genesis-content strong {
        font-size: 1.3rem;
    }

    .genesis-content span {
        font-size: 0.52rem;
    }


    .about-photo-card img {
        height: 350px;
    }

    .about-highlights {
        flex-direction: column;
    }

    .contact-form {
        padding: 24px 18px;
    }

    .review-form-card {
        padding: 24px 18px;
    }

    .review-card {
        padding: 22px 18px;
    }

    .review-stars {
        font-size: 0.95rem;
    }

    .review-author-icon {
        width: 40px;
        height: 40px;
    }

    .review-placeholder {
        padding: 30px 18px;
    }

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

    .footer-grid > div:first-child {
        grid-column: span 1;
    }
}

/* =========================================================
   EXTRA SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .container {
        padding-left: 14px;

        padding-right: 14px;
    }

    .logo {
        font-size: 1rem;
    }

    .hero h1 {
        font-size: 2.15rem;
    }

    .hero-badge {
        font-size: 0.57rem;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .dashboard-preview h3 {
        font-size: 1.45rem;
    }

    .section-heading h2,
    .about-content h2,
    .contact-info h2 {
        font-size: 1.95rem;
    }

    .review-card {
        padding: 20px 16px;
    }

    .review-form-card {
        padding: 22px 16px;
    }
}

/* =========================================================
   ACCESSIBILITY / MOBILE TOUCH
========================================================= */

@media (hover: none) {

    .btn:hover,
    .service-card:hover,
    .portfolio-card:hover,
    .review-card:hover {
        transform: none;
    }
}

/* =========================================================
   PREVENT MOBILE TEXT / ELEMENT OVERFLOW
========================================================= */

h1,
h2,
h3,
h4,
p,
a,
span,
strong,
small {
    overflow-wrap: break-word;
}

section,
header,
main,
footer,
article {
    max-width: 100%;
}
