/* ===== CSS Custom Properties ===== */
:root {
    --charcoal: #1A1A2E;
    --charcoal-light: #2D2D44;
    --charcoal-dark: #0F0F1A;
    --coral: #FF6B6B;
    --coral-dark: #E85555;
    --coral-light: #FF8A8A;
    --coral-pale: #FFF0F0;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-50: #F8F8FA;
    --gray-100: #F0F0F4;
    --gray-200: #E2E2EA;
    --gray-300: #C8C8D4;
    --gray-400: #9898A8;
    --gray-500: #6E6E80;
    --gray-600: #4A4A5C;
    --gray-700: #2D2D44;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(26,26,46,0.06), 0 1px 2px rgba(26,26,46,0.04);
    --shadow-md: 0 4px 16px rgba(26,26,46,0.08), 0 2px 4px rgba(26,26,46,0.04);
    --shadow-lg: 0 12px 40px rgba(26,26,46,0.12), 0 4px 12px rgba(26,26,46,0.06);
    --shadow-xl: 0 24px 60px rgba(26,26,46,0.16);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.text-coral { color: var(--coral); }
.text-dark { color: var(--charcoal); }

/* ===== Section Tags ===== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--coral);
    background: var(--coral-pale);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-tag--light {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    color: var(--charcoal);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 560px;
    line-height: 1.7;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(255,107,107,0.35);
}

.btn--primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,107,107,0.4);
}

.btn--ghost {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--gray-200);
}

.btn--ghost:hover {
    border-color: var(--coral);
    color: var(--coral);
}

.btn--light {
    background: var(--white);
    color: var(--charcoal);
    box-shadow: var(--shadow-md);
}

.btn--light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn--outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

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

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26,26,46,0.06);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--charcoal);
}

.nav__logo-accent {
    color: var(--coral);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--charcoal);
    background: var(--gray-50);
}

.nav__link--cta {
    background: var(--coral);
    color: var(--white) !important;
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--coral-dark);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.hero__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__shape {
    position: absolute;
    opacity: 0.06;
}

.hero__shape--circle {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--coral);
    top: -200px;
    right: -100px;
}

.hero__shape--square {
    width: 300px;
    height: 300px;
    background: var(--coral);
    bottom: -80px;
    left: 10%;
    transform: rotate(25deg);
}

.hero__shape--triangle {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 260px solid var(--coral);
    top: 20%;
    left: 5%;
    opacity: 0.04;
}

.hero__shape--dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--coral);
    top: 30%;
    right: 35%;
    opacity: 0.2;
}

.hero__container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,107,107,0.12);
    color: var(--coral);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
    border: 1px solid rgba(255,107,107,0.2);
}

.hero__headline {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 560px;
}

.hero__headline em {
    font-style: normal;
    color: var(--coral);
}

.hero__subheadline {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 0;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 24px;
}

.hero__stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.hero__stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

.hero__image-col {
    position: relative;
}

.hero__image-stack {
    position: relative;
}

.hero__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero__image--main {
    width: 100%;
    aspect-ratio: 4/5;
}

.hero__image--main img,
.hero__image--accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image--accent {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 52%;
    border: 5px solid var(--charcoal);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__floating-card {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 8px)); }
}

.hero__floating-icon {
    width: 44px;
    height: 44px;
    background: var(--coral-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero__floating-text {
    display: flex;
    flex-direction: column;
}

.hero__floating-text strong {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--charcoal);
}

.hero__floating-text span {
    font-size: 0.78rem;
    color: var(--gray-500);
}

/* ===== Services ===== */
.services {
    padding: 100px 24px;
    background: var(--gray-50);
}

.services__container {
    max-width: 1280px;
    margin: 0 auto;
}

.services__header {
    text-align: center;
    margin-bottom: 60px;
}

.services__header .section-desc {
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card--featured {
    background: var(--charcoal);
    border-color: var(--charcoal);
}

.service-card--featured .service-card__title,
.service-card--featured .service-card__desc,
.service-card--featured .service-card__list li {
    color: var(--white);
}

.service-card--featured .service-card__desc {
    color: rgba(255,255,255,0.65);
}

.service-card--featured .service-card__list li {
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.15);
}

.service-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--coral);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--coral-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card__icon--coral {
    background: var(--coral-pale);
}

.service-card__title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.service-card__desc {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-card__list li {
    font-size: 0.85rem;
    color: var(--gray-600);
    padding-left: 18px;
    position: relative;
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 8px;
}

.service-card__list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--coral);
    border-radius: 50%;
}

/* ===== About ===== */
.about {
    padding: 100px 24px;
    background: var(--white);
}

.about__container {
    max-width: 1280px;
    margin: 0 auto;
}

.about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image-grid {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image-main img,
.about__image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__image-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-md);
}

.about__experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--coral);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 8px 24px rgba(255,107,107,0.35);
}

.about__exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}

.about__exp-text {
    font-size: 0.8rem;
    opacity: 0.9;
}

.about__content .section-title {
    margin-bottom: 24px;
}

.about__body {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.about__value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about__value-icon {
    width: 44px;
    height: 44px;
    background: var(--coral-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about__value strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.about__value span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ===== Projects ===== */
.projects {
    padding: 100px 24px;
    background: var(--gray-50);
}

.projects__container {
    max-width: 1280px;
    margin: 0 auto;
}

.projects__header {
    text-align: center;
    margin-bottom: 60px;
}

.projects__header .section-desc {
    margin: 0 auto;
}

.projects__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.project-card__img {
    overflow: hidden;
    aspect-ratio: 16/11;
}

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

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

.project-card__info {
    padding: 24px 28px 28px;
}

.project-card__category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--coral);
    background: var(--coral-pale);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.project-card__title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.project-card__desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 100px 24px;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.testimonials__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.testimonials__bg-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--coral);
    opacity: 0.05;
    bottom: -150px;
    left: -100px;
}

.testimonials__container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials__header .section-tag {
    background: rgba(255,107,107,0.12);
}

.testimonials__header .section-title {
    color: var(--white);
}

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

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-card__text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    background: var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-card__name {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
}

.testimonial-card__location {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}

/* ===== CTA ===== */
.cta {
    padding: 100px 24px;
    background: var(--coral);
    position: relative;
    overflow: hidden;
}

.cta__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta__shape {
    position: absolute;
    opacity: 0.1;
}

.cta__shape--circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--white);
    top: -100px;
    right: 10%;
}

.cta__shape--rect {
    width: 200px;
    height: 200px;
    background: var(--white);
    bottom: -60px;
    left: 5%;
    transform: rotate(15deg);
}

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

.cta__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta__title .text-dark {
    color: var(--charcoal);
}

.cta__desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Contact ===== */
.contact {
    padding: 100px 24px;
    background: var(--white);
}

.contact__container {
    max-width: 1280px;
    margin: 0 auto;
}

.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact__info .section-title {
    margin-bottom: 16px;
}

.contact__desc {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    background: var(--coral-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__detail strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.contact__detail span,
.contact__detail a {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.contact__detail a:hover {
    color: var(--coral);
}

.contact__form-wrap {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-100);
}

.contact__form-title {
    font-size: 1.4rem;
    margin-bottom: 28px;
    color: var(--charcoal);
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 6px;
}

.form__input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form__input:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255,107,107,0.1);
}

.form__input::placeholder {
    color: var(--gray-300);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236E6E80' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: var(--radius-sm);
    margin-top: 16px;
}

.form__success.show {
    display: flex;
}

.form__success-icon {
    flex-shrink: 0;
}

.form__success strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: #16A34A;
}

.form__success span {
    font-size: 0.82rem;
    color: #15803D;
}

/* ===== Map ===== */
.map {
    filter: grayscale(0.3);
}

.map iframe {
    width: 100%;
}

/* ===== Footer ===== */
.footer {
    background: var(--charcoal-dark);
    padding: 60px 24px 0;
}

.footer__container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__logo-accent {
    color: var(--coral);
}

.footer__tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 280px;
}

.footer__col strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col a,
.footer__col li {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer__col a:hover,
.footer__col li:hover {
    color: var(--coral);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer__bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu a:last-child {
    border-bottom: none;
    color: var(--coral);
    font-weight: 600;
}

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

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__image-col {
        max-width: 480px;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__layout {
        gap: 48px;
    }

    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 100px 24px 60px;
        min-height: auto;
    }

    .hero__headline {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero__stat-divider {
        display: none;
    }

    .hero__floating-card {
        display: none;
    }

    .hero__image--accent {
        left: -16px;
        bottom: -20px;
        width: 55%;
    }

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

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

    .about__image-section {
        max-width: 400px;
    }

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

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

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

    .contact__form-wrap {
        padding: 28px 20px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

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

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