:root {
    --bg: #f6f8fb;
    --surface: #ffffff;
    --surface-soft: #edf3f8;
    --text: #111827;
    --muted: #536070;
    --border: #d8e2ec;
    --primary: #0d9488;
    --primary-dark: #0f5f59;
    --accent: #2563eb;
    --dark: #07111f;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 14px 38px rgba(15, 23, 42, 0.07);
    --radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top left, rgba(13, 148, 136, 0.1), transparent 34rem),
        radial-gradient(circle at 88% 12%, rgba(37, 99, 235, 0.08), transparent 28rem),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 32rem);
    color: var(--text);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.site-header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(220, 229, 239, 0.85);
    backdrop-filter: blur(18px);
    left: 0;
    position: fixed;
    top: 0;
    transition: box-shadow 0.25s ease, background 0.25s ease;
    width: 100%;
    z-index: 20;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.navbar {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1180px;
    min-height: 96px;
    padding: 0 24px;
}

.brand {
    align-items: center;
    display: inline-flex;
    font-size: 1.15rem;
    font-weight: 800;
    gap: 10px;
    letter-spacing: 0;
    line-height: 1.1;
}

.brand-mark {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%),
        linear-gradient(135deg, #0d9488, #1d4ed8);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(13, 148, 136, 0.24);
    color: #ffffff;
    display: inline-flex;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.brand-logo {
    background: #ffffff;
    border: 1px solid rgba(216, 226, 236, 0.85);
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(13, 148, 136, 0.18);
    flex: 0 0 auto;
    height: 72px;
    object-fit: contain;
    padding: 5px;
    width: 72px;
}

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

.nav-links a {
    color: #2f3b4a;
    font-size: 0.92rem;
    font-weight: 700;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.menu-toggle {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: none;
    height: 42px;
    width: 42px;
}

.menu-toggle span {
    background: var(--text);
    border-radius: 999px;
    display: block;
    height: 2px;
    margin: 7px auto;
    width: 24px;
}

.section {
    margin: 0 auto;
    max-width: 1180px;
    padding: 104px 24px;
}

.hero {
    align-items: center;
    display: grid;
    gap: 56px;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    min-height: 92vh;
    padding-top: 130px;
}

.hero-content {
    position: relative;
}

.hero-content::before {
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 999px;
    content: "";
    height: 110px;
    left: -28px;
    opacity: 0.2;
    position: absolute;
    top: 38px;
    width: 4px;
}

.eyebrow {
    background: rgba(15, 118, 110, 0.1);
    border: 1px solid rgba(15, 118, 110, 0.14);
    border-radius: 999px;
    color: var(--primary-dark);
    display: inline-block;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    padding: 7px 11px;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    letter-spacing: 0;
    line-height: 1.12;
}

h1 {
    font-size: clamp(2.25rem, 4.2vw, 3.55rem);
    font-weight: 800;
    max-width: 720px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
}

h3 {
    font-size: 1.18rem;
}

.hero p,
.section-copy p,
.section-heading p,
.contact-copy p {
    color: var(--muted);
    font-size: 1.03rem;
    margin-top: 22px;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    align-items: center;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    display: inline-flex;
    font-size: 0.94rem;
    font-weight: 800;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #164e63);
    box-shadow: 0 16px 34px rgba(15, 118, 110, 0.25);
    color: #ffffff;
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.88);
    border-color: var(--border);
    color: var(--text);
}

.hero-metrics {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 44px;
    max-width: 520px;
}

.hero-metrics div,
.stat-card,
.value-item,
.service-card,
.package-card,
.trust-card,
.project-card,
.team-card,
.testimonial-card,
.price-card,
.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.hero-metrics div {
    padding: 18px;
}

.hero-metrics strong,
.stat-card strong {
    color: var(--primary);
    display: block;
    font-size: 1.8rem;
    line-height: 1;
}

.hero-metrics span,
.stat-card span {
    color: var(--muted);
    display: block;
    font-size: 0.9rem;
    margin-top: 8px;
}

.hero-visual {
    position: relative;
}

.hero-visual::before {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.2), rgba(37, 99, 235, 0.16));
    border-radius: var(--radius);
    content: "";
    inset: -16px 18px 18px -16px;
    position: absolute;
    z-index: -1;
}

.hero-visual img,
.section-image img {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: cover;
    width: 100%;
}

.status-card {
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    bottom: 24px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 12px;
    left: -24px;
    max-width: 310px;
    padding: 18px;
    position: absolute;
}

.status-card p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 4px;
}

.status-dot {
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.15);
    flex: 0 0 auto;
    height: 11px;
    margin-top: 6px;
    width: 11px;
}

.about,
.contact {
    align-items: center;
    display: grid;
    gap: 58px;
    grid-template-columns: 0.9fr 1.1fr;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.feature-list span {
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 9px 14px;
}

.section-heading {
    margin: 0 auto 44px;
    max-width: 760px;
    text-align: center;
}

.section-heading h2 {
    margin-left: auto;
    margin-right: auto;
    max-width: 850px;
}

.card-grid,
.value-grid,
.project-grid,
.team-grid,
.testimonial-grid,
.pricing-grid,
.package-grid,
.trust-grid,
.stats {
    display: grid;
    gap: 22px;
}

.card-grid {
    grid-template-columns: repeat(3, 1fr);
}

.package-grid {
    grid-template-columns: repeat(3, 1fr);
}

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

.service-card {
    align-content: start;
    color: inherit;
    min-height: 300px;
    overflow: hidden;
    padding: 30px;
    position: relative;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card::before {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    content: "";
    height: 3px;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity 0.22s ease;
}

.service-card::after {
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--primary);
    content: "\2192";
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 800;
    height: 30px;
    justify-content: center;
    position: absolute;
    right: 24px;
    top: 24px;
    width: 30px;
}

.service-card h3,
.outcome-card h3,
.deliverable-card h3,
.process-card h3 {
    max-width: calc(100% - 42px);
}

.service-card:hover,
.project-card:hover,
.team-card:hover,
.price-card:hover {
    border-color: rgba(15, 118, 110, 0.35);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.card-icon {
    align-items: center;
    background: rgba(15, 118, 110, 0.09);
    border: 1px solid rgba(15, 118, 110, 0.15);
    border-radius: 999px;
    color: var(--primary-dark);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 800;
    height: 30px;
    justify-content: center;
    margin-bottom: 38px;
    width: 42px;
}

.service-art {
    align-items: center;
    background:
        radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.9), transparent 0.45rem),
        linear-gradient(145deg, rgba(13, 148, 136, 0.16), rgba(37, 99, 235, 0.14));
    border: 1px solid rgba(216, 226, 236, 0.9);
    border-radius: 8px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 18px 36px rgba(15, 23, 42, 0.1);
    display: flex;
    height: 104px;
    justify-content: center;
    margin: -12px 0 22px;
    overflow: hidden;
    perspective: 500px;
    position: relative;
    width: 100%;
}

.service-art::before,
.service-art::after {
    content: "";
    position: absolute;
}

.service-art-web::before {
    background:
        linear-gradient(#dbeafe 0 10px, transparent 10px),
        linear-gradient(135deg, #ffffff, #eff6ff);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 7px;
    box-shadow: 18px 18px 28px rgba(15, 23, 42, 0.12);
    height: 58px;
    transform: rotateX(58deg) rotateZ(-28deg);
    width: 90px;
}

.service-art-web::after {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 6px;
    height: 26px;
    right: 24%;
    top: 26px;
    transform: rotateX(58deg) rotateZ(-28deg) translateZ(16px);
    width: 34px;
}

.service-art-ai::before {
    background: radial-gradient(circle at 30% 28%, #ffffff, #2dd4bf 38%, #2563eb);
    border-radius: 50%;
    box-shadow:
        -34px 18px 0 -12px rgba(37, 99, 235, 0.9),
        36px 20px 0 -13px rgba(13, 148, 136, 0.9),
        0 22px 38px rgba(37, 99, 235, 0.24);
    height: 58px;
    transform: rotateX(18deg) rotateY(-18deg);
    width: 58px;
}

.service-art-ai::after {
    border: 1px solid rgba(37, 99, 235, 0.32);
    border-radius: 50%;
    height: 76px;
    transform: rotateX(68deg) rotateZ(-18deg);
    width: 112px;
}

.service-art-cyber::before {
    background: linear-gradient(145deg, #0f766e, #1d4ed8);
    border-radius: 18px 18px 24px 24px;
    box-shadow: 0 22px 36px rgba(15, 23, 42, 0.18);
    clip-path: polygon(50% 0, 90% 15%, 82% 72%, 50% 100%, 18% 72%, 10% 15%);
    height: 74px;
    transform: rotateY(-18deg) rotateX(12deg);
    width: 68px;
}

.service-art-cyber::after {
    background: #ffffff;
    border-radius: 3px;
    box-shadow: 13px 0 0 -4px #ffffff;
    height: 22px;
    transform: rotate(45deg);
    width: 10px;
}

.service-art-cloud::before {
    background: #ffffff;
    border-radius: 999px;
    box-shadow:
        -28px 12px 0 2px #dbeafe,
        28px 14px 0 3px #bfdbfe,
        0 23px 30px rgba(37, 99, 235, 0.16);
    height: 44px;
    transform: rotateX(18deg) rotateY(-12deg);
    width: 78px;
}

.service-art-cloud::after {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 7px;
    box-shadow:
        -34px 22px 0 -3px rgba(13, 148, 136, 0.72),
        34px 20px 0 -4px rgba(37, 99, 235, 0.72);
    height: 24px;
    top: 56px;
    transform: rotateX(58deg) rotateZ(-28deg);
    width: 34px;
}

.service-art-app::before {
    background:
        linear-gradient(#0f172a 0 9px, transparent 9px),
        linear-gradient(145deg, #ffffff, #dbeafe);
    border: 5px solid #111827;
    border-radius: 16px;
    box-shadow: 16px 20px 30px rgba(15, 23, 42, 0.18);
    height: 78px;
    transform: rotateY(-28deg) rotateZ(7deg);
    width: 48px;
}

.service-art-app::after {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 6px;
    height: 28px;
    transform: translate(12px, 12px) rotateY(-28deg) rotateZ(7deg);
    width: 28px;
}

.service-art-saas::before {
    background:
        linear-gradient(90deg, rgba(13, 148, 136, 0.24) 0 28%, transparent 28% 36%, rgba(37, 99, 235, 0.22) 36% 100%),
        #ffffff;
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 7px;
    box-shadow: 20px 20px 30px rgba(15, 23, 42, 0.12);
    height: 62px;
    transform: rotateX(56deg) rotateZ(-25deg);
    width: 96px;
}

.service-art-saas::after {
    background: var(--primary);
    border-radius: 6px;
    box-shadow:
        26px 14px 0 rgba(37, 99, 235, 0.86),
        -25px 18px 0 rgba(20, 184, 166, 0.72);
    height: 22px;
    top: 24px;
    transform: rotateX(56deg) rotateZ(-25deg) translateZ(18px);
    width: 22px;
}

.service-card p,
.value-item p,
.package-card p,
.trust-card p,
.project-card p,
.team-card p,
.testimonial-card p,
.price-card li {
    color: var(--muted);
    margin-top: 12px;
}

.service-hero {
    min-height: 90vh;
}

.service-kicker {
    align-items: center;
    color: var(--primary-dark);
    display: inline-flex;
    font-size: 0.86rem;
    font-weight: 800;
    gap: 10px;
    margin-top: 26px;
}

.service-kicker::before {
    background: var(--primary);
    border-radius: 999px;
    content: "";
    height: 8px;
    width: 8px;
}

.service-panel {
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.18), transparent 42%),
        var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    color: #ffffff;
    overflow: hidden;
    padding: 36px;
    position: relative;
}

.service-panel::before {
    background: linear-gradient(90deg, #14b8a6, #60a5fa);
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.service-panel h3 {
    font-size: 1.45rem;
    margin-bottom: 18px;
}

.service-panel ul,
.deliverable-list,
.process-list {
    list-style: none;
}

.service-panel li {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #d8e1ee;
    padding: 16px 0 16px 26px;
    position: relative;
}

.service-panel li::before {
    background: #2dd4bf;
    border-radius: 50%;
    content: "";
    height: 7px;
    left: 0;
    position: absolute;
    top: 25px;
    width: 7px;
}

.service-panel li:first-child {
    border-top: 0;
}

.outcome-grid,
.deliverable-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, 1fr);
}

.outcome-card,
.deliverable-card,
.process-card,
.package-card,
.trust-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 28px;
}

.outcome-card span,
.deliverable-card span,
.process-card span,
.package-card span {
    align-items: center;
    background: rgba(15, 118, 110, 0.09);
    border: 1px solid rgba(15, 118, 110, 0.15);
    border-radius: 999px;
    color: var(--primary-dark);
    display: inline-flex;
    font-size: 0.74rem;
    font-weight: 800;
    justify-content: center;
    margin-bottom: 24px;
    min-height: 28px;
    padding: 5px 10px;
}

.outcome-card p,
.deliverable-card p,
.process-card p,
.package-card p,
.trust-card p {
    color: var(--muted);
    margin-top: 12px;
}

.packages {
    padding-top: 48px;
}

.trust-section {
    padding-bottom: 72px;
    padding-top: 72px;
}

.process-section {
    background:
        linear-gradient(180deg, #f8fbfd 0%, var(--surface-soft) 100%);
    max-width: none;
}

.process-section > .section-heading,
.process-list {
    margin-left: auto;
    margin-right: auto;
    max-width: 1180px;
    padding-left: 24px;
    padding-right: 24px;
}

.process-list {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, 1fr);
}

.service-cta {
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.24), transparent 46%),
        var(--dark);
    color: #ffffff;
    max-width: none;
    text-align: center;
}

.service-cta .section-heading {
    margin-bottom: 28px;
}

.service-cta p {
    color: #b9c5d6;
}

.value-section {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.value-section > .section-heading,
.value-grid {
    margin-left: auto;
    margin-right: auto;
    max-width: 1180px;
    padding-left: 24px;
    padding-right: 24px;
}

.value-section {
    background:
        linear-gradient(135deg, rgba(13, 148, 136, 0.12), transparent 34%),
        linear-gradient(180deg, #f8fbfd 0%, #edf3f8 100%);
    color: var(--text);
    padding-bottom: 86px;
    padding-top: 86px;
}

.value-section .section-heading p,
.value-item p {
    color: var(--muted);
}

.value-section .eyebrow {
    background: rgba(15, 118, 110, 0.1);
    border-color: rgba(15, 118, 110, 0.14);
    color: var(--primary-dark);
}

.value-section .section-heading {
    margin-bottom: 36px;
}

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

.value-item {
    background: rgba(255, 255, 255, 0.88);
    border-color: var(--border);
    box-shadow: var(--shadow-soft);
    padding: 26px;
}

.project-grid {
    grid-template-columns: repeat(3, 1fr);
}

.project-card {
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    width: 100%;
}

.project-card div {
    padding: 24px;
}

.project-tag {
    color: var(--primary);
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.stats {
    grid-template-columns: repeat(4, 1fr);
    padding-top: 30px;
}

.stat-card {
    padding: 30px 24px;
    text-align: center;
}

.team-grid,
.testimonial-grid,
.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
}

.team-card {
    padding: 28px;
    text-align: center;
}

.team-card img,
.team-photo {
    aspect-ratio: 1;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
    margin: 0 auto 18px;
    object-fit: cover;
    width: 138px;
}

.team-placeholder {
    align-items: center;
    aspect-ratio: 1;
    background:
        linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(37, 99, 235, 0.12)),
        #f8fafc;
    border: 1px dashed rgba(13, 148, 136, 0.45);
    border-radius: 50%;
    color: var(--primary-dark);
    display: flex;
    font-size: 1.6rem;
    font-weight: 800;
    justify-content: center;
    margin: 0 auto 18px;
    width: 138px;
}

.team-card p {
    color: var(--primary);
    font-weight: 700;
}

.team-card small {
    color: var(--muted);
    display: block;
    font-size: 0.86rem;
    margin: 12px auto 0;
    max-width: 280px;
}

.testimonials {
    background: var(--surface-soft);
    max-width: none;
}

.testimonials .section-heading,
.testimonial-grid {
    margin-left: auto;
    margin-right: auto;
    max-width: 1180px;
    padding-left: 24px;
    padding-right: 24px;
}

.testimonial-card {
    padding: 30px;
}

.testimonial-card h3 {
    color: var(--primary);
    margin-top: 18px;
}

.price-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 30px;
    position: relative;
}

.price-card.featured {
    border-color: rgba(15, 118, 110, 0.45);
    box-shadow: 0 28px 80px rgba(13, 148, 136, 0.15);
    transform: translateY(-8px);
}

.badge {
    background: linear-gradient(135deg, #ccfbf1, #dbeafe);
    border-radius: 999px;
    color: #166534;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 10px;
    position: absolute;
    right: 24px;
    top: 24px;
}

.price-card strong {
    color: var(--primary);
    display: block;
    font-size: 2.7rem;
    margin: 18px 0;
}

.price-card ul {
    list-style: none;
    margin-bottom: 28px;
}

.price-card li {
    border-bottom: 1px solid var(--border);
    padding: 11px 0;
}

.price-card .btn {
    align-self: flex-start;
    margin-top: auto;
    min-width: 174px;
}

.contact {
    align-items: start;
}

.consultation {
    padding-bottom: 52px;
    padding-top: 52px;
}

.consultation-box {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(13, 148, 136, 0.18), transparent 45%),
        var(--dark);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    color: #ffffff;
    display: flex;
    gap: 28px;
    justify-content: space-between;
    padding: 34px;
}

.consultation-box p {
    color: #d5dfeb;
    margin-top: 14px;
    max-width: 680px;
}

.contact-info {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-info a,
.contact-info span {
    color: #334155;
    font-weight: 700;
}

.contact-form {
    padding: 30px;
}

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

.form-group label {
    color: #334155;
    display: block;
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    outline: 0;
    padding: 14px 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.contact-form .btn {
    width: 100%;
}

.form-status {
    color: var(--primary);
    font-weight: 700;
    min-height: 24px;
    margin-top: 14px;
    text-align: center;
}

.legal-section {
    background: var(--surface-soft);
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 44px max(24px, calc((100vw - 1180px) / 2 + 24px));
}

.legal-section article {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 24px;
}

.legal-section p {
    color: var(--muted);
    margin-top: 10px;
}

.site-footer {
    background:
        linear-gradient(135deg, rgba(13, 148, 136, 0.16), transparent 42%),
        var(--dark);
    color: #ffffff;
    padding: 64px 24px 28px;
}

.footer-grid {
    display: grid;
    gap: 34px;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    margin: 0 auto;
    max-width: 1180px;
}

.footer-brand {
    margin-bottom: 18px;
}

.site-footer h3 {
    margin-bottom: 16px;
}

.site-footer a,
.site-footer p {
    color: #b9c5d6;
    display: block;
    margin-bottom: 10px;
}

.site-footer a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin: 42px auto 0;
    max-width: 1180px;
    padding-top: 22px;
    text-align: center;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 12px;
}

.legal-links a {
    margin-bottom: 0;
}

.whatsapp-float {
    align-items: center;
    background: #25d366;
    border-radius: 50%;
    bottom: 156px;
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.3);
    color: #ffffff;
    display: flex;
    font-size: 0.86rem;
    font-weight: 900;
    height: 48px;
    justify-content: center;
    position: fixed;
    right: 24px;
    width: 48px;
    z-index: 25;
}

.back-to-top {
    align-items: center;
    background: var(--primary);
    border: 0;
    border-radius: 50%;
    bottom: 92px;
    box-shadow: 0 12px 30px rgba(15, 118, 110, 0.28);
    color: #ffffff;
    cursor: pointer;
    display: none;
    font-size: 1.3rem;
    font-weight: 800;
    height: 48px;
    justify-content: center;
    position: fixed;
    right: 24px;
    width: 48px;
    z-index: 25;
}

.back-to-top.show {
    display: flex;
}

.chatbot {
    bottom: 22px;
    position: fixed;
    right: 24px;
    z-index: 30;
}

.chatbot-toggle {
    align-items: center;
    background: linear-gradient(135deg, var(--primary), #1d4ed8);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 18px 42px rgba(15, 118, 110, 0.28);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    font-weight: 900;
    height: 58px;
    justify-content: center;
    width: 58px;
}

.chatbot-toggle span {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    font-size: 0.82rem;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.chatbot-panel {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    bottom: 72px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
    display: none;
    overflow: hidden;
    position: absolute;
    right: 0;
    width: min(360px, calc(100vw - 40px));
}

.chatbot.open .chatbot-panel {
    display: block;
}

.chatbot.open .chatbot-toggle {
    display: none;
}

.chatbot-header {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(13, 148, 136, 0.92), rgba(29, 78, 216, 0.94));
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    padding: 16px;
}

.chatbot-header span {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    opacity: 0.86;
    text-transform: uppercase;
}

.chatbot-header strong {
    display: block;
    font-size: 1.05rem;
    margin-top: 2px;
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    font-size: 1.3rem;
    height: 34px;
    line-height: 1;
    width: 34px;
}

.chatbot-messages {
    display: grid;
    gap: 10px;
    max-height: 280px;
    overflow-y: auto;
    padding: 16px;
}

.chat-message {
    border-radius: var(--radius);
    font-size: 0.92rem;
    line-height: 1.5;
    max-width: 88%;
    padding: 10px 12px;
}

.chat-message.bot {
    background: var(--surface-soft);
    color: #334155;
}

.chat-message.user {
    background: var(--primary);
    color: #ffffff;
    justify-self: end;
}

.chatbot-form {
    border-top: 1px solid var(--border);
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr auto;
    padding: 12px;
}

.chatbot-form input {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    outline: 0;
    padding: 11px 12px;
    width: 100%;
}

.chatbot-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.chatbot-form button {
    background: var(--text);
    border: 0;
    border-radius: var(--radius);
    color: #ffffff;
    cursor: pointer;
    font-weight: 800;
    padding: 0 14px;
}

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

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

@media (max-width: 980px) {
    .hero,
    .about,
    .contact {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .outcome-grid,
    .deliverable-grid,
    .project-grid,
    .team-grid,
    .testimonial-grid,
    .pricing-grid,
    .package-grid,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-grid,
    .process-list,
    .stats,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        min-height: auto;
    }
}

@media (max-width: 760px) {
    .navbar {
        min-height: 82px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        background: #ffffff;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 18px 40px rgba(17, 24, 39, 0.1);
        display: none;
        left: 0;
        padding: 18px 24px 24px;
        position: absolute;
        right: 0;
        top: 82px;
    }

    .nav-links.open {
        display: grid;
        gap: 16px;
    }

    .section {
        padding: 72px 20px;
    }

    .hero {
        gap: 38px;
        padding-top: 124px;
    }

    .brand-logo {
        height: 58px;
        width: 58px;
    }

    .brand {
        font-size: 1rem;
    }

    .hero-content::before {
        display: none;
    }

    .hero-metrics,
    .card-grid,
    .outcome-grid,
    .deliverable-grid,
    .process-list,
    .value-grid,
    .project-grid,
    .stats,
    .team-grid,
    .testimonial-grid,
    .pricing-grid,
    .package-grid,
    .trust-grid,
    .footer-grid,
    .legal-section {
        grid-template-columns: 1fr;
    }

    .consultation-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-actions {
        display: grid;
    }

    .status-card {
        bottom: 14px;
        left: 14px;
        max-width: calc(100% - 28px);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.35rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .brand span:last-child {
        max-width: 170px;
    }

    .contact-form,
    .price-card,
    .service-card,
    .consultation-box {
        padding: 22px;
    }
}
