:root {
    --ink: #1b2340;
    --ink-soft: #425171;
    --sand: #eef5fb;
    --milk: #f8fbff;
    --accent: #ff9f1a;
    --accent-dark: #e68500;
    --sky: #cfe5f6;
    --shadow: 0 24px 60px rgba(28, 41, 71, 0.12);
    --radius-lg: 32px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --transition: 0.3s ease;
}

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

body {
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #eaf4ff 0%, #f8fbff 35%, #ffffff 100%);
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 2px rgba(27, 35, 64, 0.08);
    scroll-behavior: smooth;
}

body[dir="rtl"] {
    direction: rtl;
    text-align: right;
    font-family: "Cairo", "Manrope", "Segoe UI", sans-serif;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad {
    padding: 90px 0;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: rgba(31, 29, 27, 0.55);
}

.eyebrow.light {
    color: rgba(255, 255, 255, 0.6);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn.primary {
    background: var(--accent);
    color: #1b2340;
    box-shadow: 0 16px 30px rgba(255, 159, 26, 0.35);
}

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

.btn.ghost {
    border-color: rgba(27, 35, 64, 0.2);
    color: var(--ink);
    background: #fff;
}

.btn.ghost:hover {
    border-color: rgba(31, 29, 27, 0.4);
}

.btn.ghost.light {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.btn.ghost.light:hover {
    border-color: rgba(255, 255, 255, 0.8);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(12px);
    background: rgba(248, 251, 255, 0.9);
    border-bottom: 1px solid rgba(27, 35, 64, 0.08);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

body[dir="rtl"] .nav-wrap {
    flex-direction: row-reverse;
}

body[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: contain;
    background: #fff;
    padding: 6px;
    box-shadow: 0 10px 18px rgba(31, 29, 27, 0.12);
}

.brand-name {
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: 1.4rem;
    font-weight: 600;
    display: block;
}

.brand-sub {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(31, 29, 27, 0.6);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 28px;
    align-items: center;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff;
    box-shadow: var(--shadow);
    font-size: 0.85rem;
    font-weight: 600;
}

.lang-switch a {
    color: rgba(27, 35, 64, 0.7);
}

.lang-switch a.active {
    color: var(--ink);
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-menu a.active {
    background: var(--ink);
    color: #fff;
    padding: 8px 18px;
    border-radius: 999px;
}

.nav-cta {
    background: var(--accent);
    color: var(--ink);
    padding: 8px 18px;
    border-radius: 999px;
}

.social-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(31, 29, 27, 0.2);
    transition: var(--transition);
    background: #fff;
}

.social-btn:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 6px;
    flex-direction: column;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--ink);
    display: block;
    transition: var(--transition);
}

.hero,
.page-hero {
    padding: 90px 0 120px;
    position: relative;
}

.hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(39, 121, 255, 0.25), rgba(39, 121, 255, 0));
    top: -70px;
    left: 10%;
    z-index: 0;
}

.hero-copy h1,
.page-hero h1,
.hero-content h1 {
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(2.6rem, 4vw, 4rem);
    line-height: 1.05;
    margin: 18px 0 20px;
}

.hero-attention {
    display: inline-block;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(2.8rem, 4.3vw, 4.6rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(120deg, #1b2340, #ff9f1a 55%, #1f65ff 85%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 20px 25px rgba(27, 35, 64, 0.35);
    position: relative;
    animation: gradientShift 6s ease infinite;
}

.hero-attention::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 86px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff9f1a, #ff5a2f);
    opacity: 0.75;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-lead {
    font-size: 1.05rem;
    color: var(--ink-soft);
    max-width: 520px;
}

p,
.bullet-list li,
.contact-grid p,
.info-copy p,
.review-card p,
.stat-card p,
.service-row p,
.media-card p {
    font-size: 1rem;
    letter-spacing: 0.01em;
    opacity: 0.92;
    animation: textGlow 5s ease-in-out infinite alternate;
    transition: color 0.4s ease, opacity 0.4s ease;
}

.ceo-message .container {
    padding: 0;
}

.ceo-grid {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 42px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    align-items: center;
}

.ceo-content h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 18px;
}

.ceo-content p {
    color: rgba(31, 29, 27, 0.75);
    margin-bottom: 16px;
    line-height: 1.7;
}

.ceo-signature {
    margin-top: 8px;
}

.ceo-signature p {
    font-weight: 700;
    margin-bottom: 4px;
}

.ceo-signature span {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(31, 29, 27, 0.45);
}

.ceo-quote {
    margin-top: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--ink-soft);
}

.ceo-media img {
    width: 100%;
    border-radius: 18px;
    box-shadow: var(--shadow);
    object-fit: cover;
    min-height: 320px;
}

@media (max-width: 640px) {
    .ceo-grid {
        padding: 32px;
    }

    .ceo-content h2 {
        font-size: 1.8rem;
    }
}

.hero-lead.light {
    color: rgba(255, 255, 255, 0.85);
}

.section-pad {
    position: relative;
    animation: fadeRise 1s ease both;
}

.section-pad::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(255, 159, 26, 0.08), transparent 60%);
    pointer-events: none;
    opacity: 0.6;
    animation: floatGlow 6s ease-in-out infinite;
}

.section-pad > .container {
    position: relative;
    z-index: 1;
}

.floating-text {
    display: inline-block;
    animation: floatUp 6s ease-in-out infinite;
}

.hero-lead span {
    color: var(--accent-dark);
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin: 28px 0 32px;
    flex-wrap: wrap;
}

.hero-suntrix::before {
    opacity: 0.35;
}

.hero-shell {
    position: relative;
    z-index: 1;
}

.hero-banner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 36px;
    padding: 52px;
    border-radius: 32px;
    background: linear-gradient(135deg, #d9ecfb 0%, #f7fbff 55%, #ffffff 100%);
    box-shadow: 0 24px 50px rgba(28, 41, 71, 0.18);
    overflow: hidden;
    position: relative;
    animation: fadeIn 0.9s ease;
}

body[dir="rtl"] .hero-banner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

body[dir="rtl"] .hero-content {
    order: 2;
}

body[dir="rtl"] .hero-mosaic {
    order: 1;
}

.hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(255, 159, 26, 0.2), transparent 45%),
        radial-gradient(circle at 90% 10%, rgba(39, 121, 255, 0.12), transparent 55%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 span {
    color: #78a7d7;
}

.hero-stat {
    margin-top: 24px;
    background: #fff;
    padding: 16px 20px;
    border-radius: 16px;
    display: inline-block;
    box-shadow: var(--shadow);
}

.hero-stat h3 {
    font-size: 2rem;
    margin-bottom: 4px;
}

.hero-mosaic {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.mosaic-card {
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 16px;
}

.hero-mosaic .image-slot {
    height: 140px;
    border-radius: 16px;
    background: linear-gradient(140deg, rgba(39, 121, 255, 0.12), rgba(255, 255, 255, 0.95));
}

.mosaic-card.stat-card {
    display: grid;
    gap: 10px;
    align-content: center;
}

.mosaic-card.note-card {
    grid-column: span 2;
    background: #f0f6ff;
}

.avatar-row {
    display: flex;
    gap: 6px;
}

.avatar-row span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(120deg, #ffb74d, #78a7d7);
}

.alt-section {
    background: var(--milk);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.media-card {
    background: #fff;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(31, 29, 27, 0.18);
}

.media-card h3 {
    margin: 16px 0 8px;
    font-size: 1.1rem;
}

.media-card p {
    color: rgba(31, 29, 27, 0.65);
}

.image-slot {
    border-radius: 18px;
    height: 200px;
    background: linear-gradient(140deg, rgba(39, 121, 255, 0.14), rgba(255, 255, 255, 0.95));
    border: 1px dashed rgba(27, 35, 64, 0.2);
    display: grid;
    place-items: center;
    color: rgba(27, 35, 64, 0.5);
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}

.image-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

.hero-mosaic .mosaic-card.image-slot {
    padding: 0;
}

.image-slot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    transform: translateX(-100%);
    animation: shimmer 3s ease-in-out infinite;
}

.section-pad .ceo-media img,
.section-pad .image-slot img {
    transition: transform 0.6s ease;
}

.section-pad .ceo-media img:hover,
.section-pad .image-slot img:hover {
    transform: translateY(-6px) scale(1.01);
}

.keyline {
    border-left: 3px solid var(--accent);
    padding-left: 16px;
}

.hidden-scroll {
    scroll-margin-top: 120px;
}

.float-button {
    animation: floatUp 4s ease-in-out infinite;
}

@keyframes fadeRise {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes textGlow {
    from {
        opacity: 0.8;
    }
    to {
        opacity: 1;
    }
}

@keyframes floatGlow {
    0% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.4;
    }
}

.image-slot.tall {
    height: 320px;
}

.info-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

body[dir="rtl"] .info-copy {
    order: 2;
}

body[dir="rtl"] .info-media {
    order: 1;
}

.info-copy p {
    color: rgba(31, 29, 27, 0.7);
    margin-top: 16px;
}

.bullet-list {
    margin-top: 20px;
    list-style: none;
    display: grid;
    gap: 10px;
    color: rgba(31, 29, 27, 0.7);
}

.bullet-list li::before {
    content: "•";
    margin-right: 8px;
    color: var(--accent);
}

body[dir="rtl"] .bullet-list li::before {
    margin-right: 0;
    margin-left: 8px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.stat-card {
    background: #fff;
    padding: 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.stat-card h3 {
    margin-bottom: 8px;
}

.stat-card p {
    color: rgba(31, 29, 27, 0.7);
}

.timeline {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.timeline-step {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow);
}

.timeline-step span {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(240, 123, 73, 0.15);
    color: var(--accent-dark);
    font-weight: 700;
    display: grid;
    place-items: center;
}

.timeline-step h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.timeline-step p {
    color: rgba(31, 29, 27, 0.65);
    font-size: 0.9rem;
}

.map-placeholder {
    height: 320px;
    border-radius: 20px;
    background: linear-gradient(140deg, rgba(31, 29, 27, 0.08), rgba(255, 255, 255, 0.8));
    border: 1px dashed rgba(31, 29, 27, 0.2);
    display: grid;
    place-items: center;
    color: rgba(31, 29, 27, 0.5);
    font-size: 0.9rem;
}

.map-embed {
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(27, 35, 64, 0.1);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-rows: 1fr auto;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-link {
    padding: 10px 14px;
    font-size: 0.85rem;
    color: var(--ink);
    background: rgba(27, 35, 64, 0.04);
    text-align: center;
}

.service-slate {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 32px;
    align-items: center;
}

body[dir="rtl"] .service-slate {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

body[dir="rtl"] .service-list {
    order: 2;
}

body[dir="rtl"] .service-slate .info-media {
    order: 1;
}

.service-list {
    display: grid;
    gap: 14px;
}

.service-row {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) 40px;
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
}

.service-row h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.service-row p {
    color: rgba(31, 29, 27, 0.65);
    font-size: 0.9rem;
}

.service-index {
    font-weight: 700;
    color: rgba(31, 29, 27, 0.5);
}

.service-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(31, 29, 27, 0.2);
    display: grid;
    place-items: center;
    font-weight: 600;
    color: rgba(31, 29, 27, 0.6);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.project-card {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.project-card .image-slot {
    height: 220px;
    border-radius: 0;
    border: none;
}

.project-body {
    padding: 18px 20px 22px;
}

.pill {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(31, 29, 27, 0.08);
    font-size: 0.75rem;
    font-weight: 600;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin-top: 32px;
}

.stat-pill {
    background: #fff;
    padding: 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-pill h3 {
    font-size: 2rem;
    margin-bottom: 4px;
}

.reviews {
    background: #edf4fb;
}

.review-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 24px;
    align-items: center;
}

body[dir="rtl"] .review-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
}

body[dir="rtl"] .review-card {
    order: 2;
}

body[dir="rtl"] .review-hero {
    order: 1;
}

.review-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 22px;
    box-shadow: var(--shadow);
}

.review-hero {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 26px;
    box-shadow: var(--shadow);
}

.review-hero .image-slot {
    height: 240px;
    margin-bottom: 16px;
}

.quote-mark {
    font-size: 2.5rem;
    color: rgba(31, 29, 27, 0.2);
}

.cta-band {
    margin-top: 32px;
    background: #1f1d1b;
    color: #fff;
    border-radius: 24px;
    padding: 26px 30px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
}

.cta-band h3 {
    font-size: 1.8rem;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
}

.page-hero {
    padding-bottom: 70px;
}

.page-hero .container {
    background: #ffffff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.about {
    background: var(--milk);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.about h2,
.services h2,
.contact h2,
.values h2 {
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-top: 16px;
}

.about p {
    color: rgba(31, 29, 27, 0.7);
}

.about-highlights {
    margin-top: 24px;
    display: grid;
    gap: 16px;
}

.highlight {
    display: flex;
    gap: 16px;
    align-items: center;
    background: #fff;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.highlight span {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--accent-dark);
}

.services {
    position: relative;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

body[dir="rtl"] .section-heading {
    flex-direction: row-reverse;
    text-align: right;
}

.section-heading p {
    max-width: 420px;
    color: rgba(31, 29, 27, 0.7);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.service-card {
    background: #fff;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    min-height: 200px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-card p {
    color: rgba(31, 29, 27, 0.65);
    margin-bottom: 18px;
}

.service-tag {
    display: inline-flex;
    background: rgba(31, 29, 27, 0.08);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.values {
    background: #fff;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.value-card {
    background: var(--milk);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.value-card h3 {
    margin-bottom: 10px;
}

.value-card p {
    color: rgba(31, 29, 27, 0.65);
}

.contact {
    background: var(--milk);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.contact p {
    margin-top: 16px;
    color: rgba(31, 29, 27, 0.7);
}

.contact-phone {
    font-weight: 600;
}

.contact-form {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(31, 29, 27, 0.7);
}

.contact-form input,
.contact-form textarea {
    border: 1px solid rgba(31, 29, 27, 0.15);
    border-radius: 12px;
    padding: 12px;
    font-family: inherit;
    font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(240, 123, 73, 0.2);
}

.footer {
    background: #1b2340;
    color: rgba(255, 255, 255, 0.7);
    padding: 30px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    background: #fff;
    border-radius: 14px;
    padding: 6px;
    margin-bottom: 10px;
}

.footer-social p {
    margin-bottom: 10px;
}

.footer .social-btn {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.footer .social-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: 0.6s ease;
}

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

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(100%);
    }
}

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

@keyframes float-offset {
    0% {
        transform: translateX(30px) translateY(0);
    }
    50% {
        transform: translateX(30px) translateY(-8px);
    }
    100% {
        transform: translateX(30px) translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 960px) {
    .about-grid,
    .contact-grid,
    .info-split,
    .service-slate,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 16px;
        right: 16px;
        background: #fff;
        border-radius: var(--radius-md);
        padding: 20px;
        flex-direction: column;
        gap: 18px;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .social-links {
        display: none;
    }

    .hero-banner {
        grid-template-columns: 1fr;
        padding: 40px 28px;
    }

    .hero-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mosaic-card.note-card {
        grid-column: span 2;
    }

    .cta-band {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    body {
        letter-spacing: 0.01em;
        font-weight: 600;
    }
    .section-pad {
        padding: 70px 0;
    }
    .section-pad::before {
        display: none;
    }
    .hero-attention {
        font-size: clamp(2.6rem, 6vw, 3.4rem);
    }
}

@media (max-width: 640px) {
    body {
        background: linear-gradient(180deg, #fdfbf8 0%, #f1f6ff 45%, #f7fbff 100%);
    }
    .container {
        padding: 0 16px;
    }
    .nav-wrap {
        flex-wrap: wrap;
        gap: 16px;
    }
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    .section-pad {
        padding: 50px 0;
    }
    .section-pad::before {
        display: none;
    }
    .ceo-grid {
        padding: 30px;
    }
    .hero-lead,
    .contact-grid p,
    .bullet-list li {
        font-size: 1.05rem;
    }
}
