/* ============================================
   Pineywood Builders Inc — Custom Styles
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #1a1a2e;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg {
    display: block;
    max-width: 100%;
}

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

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    font-weight: 700;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #0A2342;
    color: #5EEAD4;
    padding: 0.75rem 1.25rem;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    font-weight: 600;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Typography --- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5EEAD4;
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 2rem;
    height: 2px;
    background: #5EEAD4;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: #0A2342;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.accent {
    color: #5EEAD4;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 640px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn--primary {
    background: #5EEAD4;
    color: #0A2342;
}

.btn--primary:hover,
.btn--primary:focus-visible {
    background: #3dd9c0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(94, 234, 212, 0.35);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn--ghost-light {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn--ghost-light:hover,
.btn--ghost-light:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 35, 66, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(94, 234, 212, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 35, 66, 0.98);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.0625rem;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.logo-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5EEAD4;
}

.logo--light .logo-name { color: #ffffff; }

/* --- Navigation --- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 0.875rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: #ffffff;
    background: rgba(94, 234, 212, 0.1);
}

.nav-link--cta {
    background: #5EEAD4;
    color: #0A2342 !important;
    font-weight: 600;
    margin-left: 0.5rem;
}

.nav-link--cta:hover {
    background: #3dd9c0;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 35, 66, 0.92) 0%,
        rgba(10, 35, 66, 0.78) 50%,
        rgba(10, 35, 66, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 8rem 1.5rem 4rem;
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(94, 234, 212, 0.15);
    border: 1px solid rgba(94, 234, 212, 0.3);
    color: #5EEAD4;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 5rem);
    color: #ffffff;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-accent {
    color: #5EEAD4;
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(94, 234, 212, 0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* --- Section Spacing --- */
.section {
    padding: 6rem 0;
}

/* --- Services --- */
.services {
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(10, 35, 66, 0.06);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(10, 35, 66, 0.1);
    border-color: rgba(94, 234, 212, 0.3);
}

.service-icon {
    margin-bottom: 1.25rem;
}

.service-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0A2342;
    margin-bottom: 0.625rem;
}

.service-desc {
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.65;
}

/* --- About --- */
.about {
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(10, 35, 66, 0.15);
}

.about-image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 180px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 24px rgba(10, 35, 66, 0.12);
}

.about-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-stat {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    background: #0A2342;
    color: #ffffff;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(10, 35, 66, 0.25);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: #5EEAD4;
    line-height: 1;
}

.about-stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.about-content .section-title {
    margin-bottom: 1.5rem;
}

.about-body {
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 2rem 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1a1a2e;
}

.value-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(94, 234, 212, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Projects --- */
.projects {
    background: #f8fafc;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    group: true;
}

.project-img {
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.05);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(10, 35, 66, 0.9) 0%, transparent 100%);
    color: #ffffff;
}

.project-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5EEAD4;
    margin-bottom: 0.375rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.project-location {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
}

.projects-cta {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.9375rem;
    color: #4a5568;
}

.projects-cta a {
    color: #0A2342;
    font-weight: 600;
    border-bottom: 2px solid #5EEAD4;
    transition: color 0.2s;
}

.projects-cta a:hover {
    color: #3dd9c0;
}

/* --- Testimonials --- */
.testimonials {
    background: #0A2342;
    color: #ffffff;
}

.testimonials .section-label {
    color: #5EEAD4;
}

.testimonials .section-title {
    color: #ffffff;
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(94, 234, 212, 0.25);
    transform: translateY(-4px);
}

.testimonial-quote-mark {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(94, 234, 212, 0.15);
    pointer-events: none;
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
}

.testimonial-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #5EEAD4;
}

/* --- Process --- */
.process {
    background: #ffffff;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 2rem 1.25rem;
}

.process-step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(94, 234, 212, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

.process-step-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0A2342;
    margin-bottom: 0.625rem;
}

.process-step-desc {
    font-size: 0.875rem;
    color: #4a5568;
    line-height: 1.65;
}

.process-step-connector {
    flex: 0;
    width: 40px;
    align-self: center;
    background: linear-gradient(to right, transparent, rgba(94, 234, 212, 0.4), transparent);
    height: 2px;
    display: none;
}

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 35, 66, 0.93) 0%, rgba(10, 35, 66, 0.82) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* --- Contact --- */
.contact {
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info .section-title {
    margin-bottom: 1rem;
}

.contact-body {
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-detail-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0A2342;
    margin-bottom: 0.25rem;
}

.contact-detail dd {
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.6;
}

.contact-detail a {
    color: #0A2342;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-detail a:hover {
    color: #5EEAD4;
}

.contact-map {
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(10, 35, 66, 0.08);
}

/* --- Contact Form --- */
.contact-form-wrap {
    position: sticky;
    top: 100px;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 16px 48px rgba(10, 35, 66, 0.08);
    border: 1px solid rgba(10, 35, 66, 0.06);
}

.contact-form-title {
    font-size: 1.5rem;
    color: #0A2342;
    margin-bottom: 0.5rem;
}

.contact-form-subtitle {
    font-size: 0.9375rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0A2342;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    background: #f8fafc;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #5EEAD4;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.15);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input.invalid,
.form-group textarea.invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-success {
    text-align: center;
    padding: 2rem 1rem;
}

.success-icon {
    margin: 0 auto 1rem;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(94, 234, 212, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-title {
    font-size: 1.375rem;
    color: #0A2342;
    margin-bottom: 0.5rem;
}

.success-text {
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.6;
}

/* --- Footer --- */
.footer {
    background: #0A2342;
    color: #ffffff;
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    max-width: 280px;
}

.footer-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5EEAD4;
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #5EEAD4;
}

.footer-address {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    font-style: normal;
}

.footer-address a {
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s;
}

.footer-address a:hover {
    color: #5EEAD4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-copy {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-location {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about-grid {
        gap: 3rem;
    }

    .contact-grid {
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #0A2342;
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 1.5rem 2rem;
        gap: 0.25rem;
        transition: right 0.3s ease;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }

    .nav-link--cta {
        margin-left: 0;
        margin-top: 0.75rem;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        padding: 7rem 1.5rem 3rem;
    }

    .hero-title {
        font-size: clamp(2.25rem, 8vw, 3.5rem);
    }

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

    .hero-actions .btn {
        justify-content: center;
    }

    .hero-trust {
        gap: 1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-accent {
        width: 120px;
        height: 120px;
        bottom: -1rem;
        right: -0.5rem;
    }

    .about-stat {
        top: -1rem;
        left: -0.5rem;
        padding: 1rem 1.25rem;
    }

    .about-stat-number {
        font-size: 1.75rem;
    }

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

    .project-img img {
        height: 240px;
    }

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

    .process-steps {
        flex-direction: column;
        gap: 0;
    }

    .process-step-connector {
        display: block;
        width: 2px;
        height: 32px;
        background: linear-gradient(to bottom, rgba(94, 234, 212, 0.4), transparent);
        margin: 0 auto;
    }

    .process-step {
        padding: 1.5rem 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-wrap {
        position: static;
    }

    .contact-form-card {
        padding: 1.75rem;
    }

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

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

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 6rem 1rem 2rem;
    }

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

    .contact-form-card {
        padding: 1.25rem;
    }
}
