* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #f6f8fb;
    --white: #ffffff;
    --dark: #0f172a;
    --navy: #1e3a5f;
    --navy-soft: #e8f0f8;
    --gold: #c59b45;
    --text: #111827;
    --muted: #64748b;
    --border: #e5e7eb;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

/* HEADER */

.site-header {
    height: 82px;
    padding: 0 7%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 50;
}

.logo {
    text-decoration: none;
    font-size: 24px;
    font-weight: 900;
    color: var(--dark);
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #334155;
    font-weight: 800;
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-actions a {
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 900;
    margin-left: 10px;
}

.login-btn {
    color: var(--navy);
    background: var(--navy-soft);
}

.signup-btn {
    color: var(--white);
    background: var(--navy);
}

/* HERO */

.hero-section {
    padding: 46px 7% 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: #dbeafe;
    border-radius: 50%;
    top: 80px;
    right: 7%;
    filter: blur(80px);
    opacity: 0.75;
    z-index: -1;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: #f1dca7;
    border-radius: 50%;
    bottom: 40px;
    left: 5%;
    filter: blur(90px);
    opacity: 0.45;
    z-index: -1;
}

.hero-grid {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 48%, #edf3f8 100%);
    border: 1px solid var(--border);
    border-radius: 44px;
    padding: 56px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 46px;
    align-items: center;
    box-shadow: var(--shadow);
}

.eyebrow,
.section-header span,
.feature-text span,
.cta-section span {
    display: inline-block;
    color: var(--navy);
    background: var(--navy-soft);
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 18px;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.02;
    letter-spacing: -2.6px;
    color: var(--dark);
    margin-bottom: 22px;
    max-width: 780px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 640px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-buttons a,
.primary-btn,
.secondary-btn {
    text-decoration: none;
    padding: 15px 24px;
    border-radius: 16px;
    font-weight: 900;
    display: inline-block;
}

.primary-btn {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(30, 58, 95, 0.25);
}

.secondary-btn {
    background: var(--white);
    color: var(--navy);
    border: 1px solid #dbe3ec;
}

.trust-row {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.trust-row div {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 18px;
}

.trust-row strong {
    display: block;
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 6px;
}

.trust-row span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.hero-image {
    height: 480px;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy), var(--dark));
    box-shadow: 0 34px 80px rgba(15, 23, 42, 0.28);
    transform: rotate(1.4deg);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
}

.hero-image::after {
    content: "Workshop Image";
    position: absolute;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 18px 20px;
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(12px);
    min-width: 210px;
}

.floating-card span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 5px;
}

.floating-card strong {
    display: block;
    color: var(--dark);
    font-size: 18px;
    margin-bottom: 5px;
}

.floating-card small {
    color: var(--gold);
    font-weight: 900;
}

.card-one {
    left: -26px;
    top: 74px;
}

.card-two {
    right: -18px;
    bottom: 82px;
}

/* STRIP */

.brand-strip {
    margin: 0 7% 34px;
    background: var(--dark);
    color: #dbeafe;
    border-radius: 26px;
    padding: 22px 28px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

.brand-strip div {
    text-align: center;
    font-weight: 900;
    font-size: 14px;
}

/* COMMON SECTIONS */

.section {
    padding: 76px 7%;
}

.section-header {
    max-width: 760px;
    margin-bottom: 36px;
}

.section-header.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-header h2,
.feature-text h2,
.cta-section h2 {
    font-size: 42px;
    line-height: 1.12;
    letter-spacing: -1.4px;
    color: var(--dark);
    margin-bottom: 14px;
}

.section-header p,
.feature-text p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 17px;
}

/* SERVICES */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
    transition: 0.2s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.11);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--navy-soft);
    color: var(--navy);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--dark);
    font-size: 22px;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--muted);
    line-height: 1.7;
}

/* FEATURES */

.features-section {
    padding-top: 40px;
}

.feature-layout {
    background: var(--dark);
    border-radius: 42px;
    padding: 54px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 46px;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.feature-layout::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(197, 155, 69, 0.25);
    border-radius: 50%;
    right: -140px;
    top: -120px;
    filter: blur(70px);
}

.feature-text {
    position: relative;
    z-index: 1;
}

.feature-text span {
    background: rgba(255, 255, 255, 0.10);
    color: #f6d98b;
}

.feature-text h2 {
    color: var(--white);
}

.feature-text p {
    color: #cbd5e1;
}

.feature-list {
    margin-top: 28px;
    display: grid;
    gap: 16px;
}

.feature-list div {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 22px;
    padding: 20px;
}

.feature-list strong {
    display: block;
    color: var(--white);
    margin-bottom: 7px;
}

.feature-list p {
    font-size: 15px;
    margin: 0;
}

.dashboard-mockup {
    position: relative;
    z-index: 1;
    height: 520px;
    background: #f8fafc;
    border-radius: 34px;
    padding: 24px;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.22);
    display: grid;
    grid-template-columns: 110px 1fr;
    grid-template-rows: 34px 1fr;
    gap: 18px;
    transform: rotate(-1.2deg);
}

.mockup-top {
    grid-column: 1 / 3;
    display: flex;
    gap: 8px;
    align-items: center;
}

.mockup-top span {
    width: 11px;
    height: 11px;
    background: #cbd5e1;
    border-radius: 50%;
}

.mockup-sidebar {
    background: var(--dark);
    border-radius: 24px;
}

.mockup-content {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 22px;
}

.mockup-hero {
    height: 135px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--navy), var(--gold));
    margin-bottom: 18px;
}

.mockup-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.mockup-cards div {
    height: 92px;
    border-radius: 18px;
    background: #edf2f7;
}

.mockup-line {
    height: 14px;
    background: #dbe3ec;
    border-radius: 999px;
    margin-bottom: 14px;
}

.mockup-line.short {
    width: 60%;
}

/* GALLERY */

.gallery-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr 0.9fr;
    gap: 22px;
}

.gallery-item {
    height: 290px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy), var(--dark));
    border: 1px solid var(--border);
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
    position: relative;
}

.gallery-item.large {
    height: 420px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
}

.gallery-item::after {
    content: "Add Workshop Photo";
    position: absolute;
    inset: 0;
    color: #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    background: rgba(15, 23, 42, 0.28);
}

/* PROCESS */

.process-section {
    margin: 30px 7% 76px;
    background: linear-gradient(135deg, #ffffff, #eef3f8);
    border: 1px solid var(--border);
    border-radius: 42px;
    padding: 58px;
    box-shadow: var(--shadow);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.process-grid div {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 24px;
}

.process-grid strong {
    display: block;
    color: var(--gold);
    font-size: 26px;
    margin-bottom: 16px;
}

.process-grid h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

.process-grid p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 15px;
}

/* CTA */

.cta-section {
    margin: 0 7% 76px;
    background: linear-gradient(135deg, var(--navy), var(--dark));
    color: var(--white);
    border-radius: 42px;
    padding: 54px;
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: center;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
}

.cta-section span {
    color: #f6d98b;
    background: rgba(255,255,255,0.10);
}

.cta-section h2 {
    color: var(--white);
    max-width: 720px;
}

.cta-section a {
    text-decoration: none;
    background: var(--gold);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 900;
    white-space: nowrap;
}

/* CONTACT */

.contact-grid {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 34px;
    padding: 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

.contact-grid strong {
    display: block;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-grid p {
    color: var(--muted);
    line-height: 1.7;
}

/* FOOTER */

.footer {
    padding: 32px 7%;
    text-align: center;
    color: var(--muted);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .hero-grid,
    .feature-layout,
    .gallery-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid,
    .brand-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-visual {
        min-height: 460px;
    }
}

@media (max-width: 720px) {
    .site-header {
        height: auto;
        padding: 18px 5%;
        align-items: flex-start;
        gap: 16px;
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        display: flex;
        width: 100%;
        gap: 10px;
    }

    .nav-actions a {
        margin-left: 0;
        text-align: center;
        flex: 1;
    }

    .hero-section,
    .section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .hero-grid,
    .feature-layout,
    .process-section,
    .cta-section {
        padding: 30px;
        border-radius: 30px;
    }

    .hero-content h1,
    .section-header h2,
    .feature-text h2,
    .cta-section h2 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .trust-row,
    .services-grid,
    .process-grid,
    .brand-strip {
        grid-template-columns: 1fr;
    }

    .hero-image {
        height: 360px;
        transform: none;
    }

    .floating-card {
        position: static;
        margin-top: 14px;
    }

    .dashboard-mockup {
        height: 420px;
        grid-template-columns: 80px 1fr;
        transform: none;
    }

    .mockup-cards {
        grid-template-columns: 1fr;
    }

    .gallery-item,
    .gallery-item.large {
        height: 260px;
    }

    .cta-section {
        flex-direction: column;
        align-items: flex-start;
    }
}