:root {
    --pk: #F194B4;
    --pk-strong: #D45D8A;
    --pk-soft: #F7B8CE;
    --pk2: var(--pk-soft);
    --tl: #345E5E;
    --tl-dark: #2A4B4B;
    --tl2: var(--tl-dark);
    --dk: #0F172A;
    --lt: #F8FAFC;
    --gy: #64748B;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #1e293b;
    background: var(--lt);
    overflow-x: hidden;
}

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

button,
input,
select,
textarea {
    font-family: inherit;
}

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

section,
footer,
header {
    position: relative;
}

/* NAV */
.fe-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(52, 94, 94, 0.08);
    transition: 0.3s ease;
}

.fe-nav .inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.brand img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2.5px solid var(--pk);
    object-fit: cover;
}

.brand-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--tl);
    border: 2.5px solid var(--pk);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-circle span {
    color: var(--white);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.brand-name {
    font-weight: 800;
    font-size: 16px;
    color: var(--tl);
    letter-spacing: 0.5px;
}

.brand-name em {
    color: var(--pk);
    font-style: normal;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    margin-left: 28px;
    transition: 0.2s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pk);
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--pk);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--pk);
    color: var(--tl) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700 !important;
    box-shadow: 0 4px 16px rgba(241, 148, 180, 0.4);
    transition: 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--tl) !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(52, 94, 94, 0.3) !important;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--tl);
    cursor: pointer;
}

.mob-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    padding: 16px 28px 24px;
    gap: 12px;
}

.mob-menu a {
    color: #475569;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.mob-menu.open {
    display: flex;
}

/* HERO */
#hero {
    background: var(--tl);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-blob1,
.hero-blob2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
}

.hero-blob1 {
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    background: var(--pk);
    opacity: 0.15;
}

.hero-blob2 {
    bottom: -60px;
    left: -60px;
    width: 320px;
    height: 320px;
    background: #fff;
    opacity: 0.07;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 40px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--pk);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title .script {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(48px, 6vw, 84px);
    color: var(--pk);
    font-weight: 400;
    display: block;
    line-height: 1;
    margin: 4px 0;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-pk,
.btn-outline,
.btn-submit {
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.btn-pk {
    background: var(--pk);
    color: var(--tl);
    padding: 14px 30px;
    box-shadow: 0 6px 20px rgba(241, 148, 180, 0.4);
}

.btn-pk:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(241, 148, 180, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    padding: 14px 30px;
}

.btn-outline:hover {
    background: #fff;
    color: var(--tl);
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 50px;
}

.stat-n {
    font-size: 32px;
    font-weight: 900;
    color: var(--pk);
}

.stat-l {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.hero-img-wrap {
    position: relative;
}

.hero-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--pk);
    border-radius: 20px;
    transform: rotate(3deg);
    opacity: 0.25;
    top: 16px;
    left: 16px;
}

.hero-card-float {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    z-index: 1;
}

.hcf-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.hcf-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pk), var(--pk-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tl);
    font-weight: 900;
    font-size: 13px;
}

.hcf-name {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
}

.hcf-sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    margin-bottom: 8px;
}

.metric-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.metric-val {
    font-size: 13px;
    font-weight: 700;
}

.v-green {
    color: #34d399;
}

.v-pink {
    color: var(--pk);
}

.v-teal {
    color: #5eead4;
}

/* BRANDS BAR */
.brands-bar {
    background: var(--pk-soft);
    padding: 24px 0;
    border-bottom: 1px solid #e2e8f0;
}

.brands-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.brands-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.brands-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 20px;
    justify-content: center;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.brands-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.brand-logo {
    flex-shrink: 0;
    width: 140px;
    height: 70px;
    object-fit: contain;
    background: #e2e8f0;
    border-radius: 8px;
    padding: 4px;
    border: 1px solid #e2e8f0;
}

/* SECTIONS */
#about,
#services,
#portfolio,
#testimonios,
#cotizar,
#contacto {
    padding: 80px 24px;
}

#about,
#services,
#cotizar {
    background: #fff;
}

#portfolio,
#testimonios {
    background: var(--tl);
}

#contacto {
    background: linear-gradient(135deg, rgba(241, 148, 180, 0.08), rgba(52, 94, 94, 0.06));
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--pk);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-heading {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: var(--tl);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-heading .script {
    font-family: 'Great Vibes', cursive;
    color: var(--pk);
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 400;
    position: relative;
    top: 6px;
}

.section-heading.white {
    color: #fff;
}

.section-heading.white .script {
    color: var(--pk);
}

.about-inner,
.quote-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.about-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.about-imgs .img-card {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
}

.about-imgs .img-card:first-child {
    transform: translateY(24px);
}

.about-imgs .img-card {
    height: 200px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 28px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #475569;
    padding: 6px 0;
}

.check-list li i {
    color: var(--pk);
    font-size: 18px;
}

.about-text p,
.qi-desc,
.svc-card p,
.ads-box p,
.n8n-card p,
.media-card .mc-sub,
.footer-brand p,
.testi-quote,
.contact-inner p {
    color: var(--gy);
    line-height: 1.85;
    font-size: 15px;
}

.link-underline {
    color: var(--tl);
    font-weight: 700;
    border-bottom: 2px solid var(--pk);
    padding-bottom: 2px;
    font-size: 14px;
    transition: 0.2s ease;
}

.link-underline:hover {
    color: var(--pk);
}

.about-grid-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.span-2 {
    grid-column: span 2;
}

.ag-card {
    border-radius: 14px;
    padding: 22px;
    text-align: center;
    color: #fff;
}

.agc-pk {
    background: linear-gradient(135deg, var(--pk), var(--pk-soft));
}

.agc-tl {
    background: linear-gradient(135deg, var(--tl), var(--tl-dark));
}

.agc-dk {
    background: linear-gradient(135deg, #1e293b, #334155);
}

.agc-mix {
    background: linear-gradient(135deg, var(--tl-dark), #1e293b);
}

.ag-n {
    font-size: 32px;
    font-weight: 900;
    display: block;
}

.ag-l {
    font-size: 11px;
    opacity: 0.8;
}

/* SERVICES */
#services {
    background: var(--lt);
}

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

.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 16px;
    margin-top: 44px;
}

.svc-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid #f1f5f9;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--pk);
    transition: 0.4s ease;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(52, 94, 94, 0.1);
}

.svc-card:hover::before {
    height: 100%;
}

.svc-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 20px;
    transition: 0.3s ease;
}

.si-pk {
    background: rgba(241, 148, 180, 0.12);
    color: var(--pk);
}

.si-tl {
    background: rgba(52, 94, 94, 0.1);
    color: var(--tl);
}

.svc-card:hover .si-pk,
.svc-card:hover .si-tl {
    background: var(--pk);
    color: #fff;
}

.svc-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.svc-card p {
    font-size: 12px;
    color: var(--gy);
    line-height: 1.7;
}

.svc-tag {
    display: inline-block;
    margin-top: 10px;
    background: rgba(241, 148, 180, 0.1);
    color: var(--pk);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.svc-tag.teal {
    background: rgba(52, 94, 94, 0.1);
    color: var(--tl);
}

.svc-card.featured {
    border: 2px solid var(--pk);
    background: linear-gradient(135deg, rgba(241, 148, 180, 0.04), rgba(52, 94, 94, 0.03));
}

/* PORTFOLIO */
#portfolio {
    background: var(--tl);
}

#portfolio .section-heading {
    color: #fff;
}

#portfolio .section-heading .script {
    color: var(--pk);
}

.tabs-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 30px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 0;
    justify-content: center;
}

.tab-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.55);
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.2s ease;
}

.tab-btn.active,
.tab-btn:hover {
    color: #fff;
}

.tab-btn.active {
    color: var(--pk);
    border-bottom: 2px solid var(--pk);
}

.tab-pane {
    display: none;
    animation: fadeUp 0.3s ease;
}

.tab-pane.active {
    display: block;
}

.port-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 12px;
    margin-top: 20px;
    justify-items: center;
}

.pc {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.pc:hover {
    transform: scale(1.03);
}

.pc-inner {
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    position: relative;
}

.pc-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
}

.pc-inner > * {
    position: relative;
    z-index: 1;
}

.pc-label {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
}

.pc-brand {
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
    margin-top: 3px;
}

.ads-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.ads-box {
    border-radius: 18px;
    padding: 36px;
    color: #fff;
    text-align: center;
}

.ads-meta-bg {
    background: linear-gradient(135deg, #1877F2, #0a4fa8);
}

.ads-goo-bg {
    background: linear-gradient(135deg, #34A853, #1a6e30);
}

.ads-box i {
    font-size: 42px;
    margin-bottom: 14px;
    display: block;
    opacity: 0.9;
}

.ads-box h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.ads-box p {
    font-size: 13px;
    opacity: 0.78;
    line-height: 1.6;
}

.ads-pill {
    margin-top: 18px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 10px;
}

.ads-pill .num {
    font-size: 26px;
    font-weight: 900;
}

.ads-pill .lbl {
    font-size: 10px;
    opacity: 0.65;
}

.n8n-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.n8n-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(4px);
}

.n8n-card i {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
}

.n8n-card h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.n8n-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    line-height: 1.6;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.media-card {
    border-radius: 16px;
    padding: 26px;
    color: #fff;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.media-card i {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
    opacity: 0.75;
}

.media-card .mc-title {
    font-size: 13px;
    font-weight: 700;
}

.media-card .mc-sub {
    font-size: 10px;
    opacity: 0.55;
    margin-top: 4px;
}

.clients-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
}

.cl-chip {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 7px 16px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 600;
}

/* TESTIMONIAL */
#testimonios {
    background: var(--tl);
}

#testimonios::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(241, 148, 180, 0.15) 1px, transparent 1px);
    background-size: 28px 28px;
}

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

.testi-icon {
    font-size: 56px;
    color: var(--pk);
    margin-bottom: 16px;
}

.testi-heading {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 32px;
}

.testi-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 44px 48px;
}

.testi-quote {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 28px;
    font-weight: 300;
}

.testi-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testi-av {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pk), var(--pk-soft));
    border: 2px solid var(--pk);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tl);
    font-weight: 900;
    font-size: 16px;
}

.testi-name {
    color: #fff;
    font-weight: 700;
    text-align: left;
    font-size: 14px;
}

.testi-role {
    color: var(--pk);
    font-size: 12px;
}

/* QUOTE */
.quote-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.65fr;
    gap: 56px;
    align-items: start;
    margin-top: 48px;
}

.qi-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--tl);
    margin-bottom: 14px;
}

.qi-desc {
    font-size: 14px;
    color: var(--gy);
    line-height: 1.8;
    margin-bottom: 28px;
}

.step-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.step-num {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pk), var(--pk-soft));
    color: var(--tl);
    font-weight: 900;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(241, 148, 180, 0.4);
}

.step-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
}

.step-text span {
    font-size: 12px;
    color: var(--gy);
}

.qform {
    background: var(--lt);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid #e2e8f0;
}

.form-label-custom {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control-custom {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    color: #1e293b;
    background: #fff;
    outline: none;
    transition: 0.2s ease;
}

.form-control-custom:focus {
    border-color: var(--pk);
    box-shadow: 0 0 0 3px rgba(241, 148, 180, 0.15);
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 100px;
}

.chk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-top: 6px;
}

.chk-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    background: #fff;
    transition: 0.2s ease;
    font-size: 11px;
    font-weight: 600;
    color: #475569;
}

.chk-item:hover {
    border-color: var(--pk);
    color: var(--pk);
}

.chk-item input {
    accent-color: var(--pk);
    width: 13px;
    height: 13px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--pk), var(--pk-soft));
    color: var(--tl);
    padding: 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    box-shadow: 0 6px 20px rgba(241, 148, 180, 0.4);
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(241, 148, 180, 0.5);
}

.form-note {
    font-size: 11px;
    color: #94a3b8;
    text-align: center;
    margin-top: 10px;
}

/* CONTACT */
.contact-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.contact-inner .section-heading {
    color: var(--tl);
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cc-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 26px 32px;
    min-width: 190px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(52, 94, 94, 0.06);
    transition: 0.3s ease;
}

.cc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(52, 94, 94, 0.12);
}

.cc-icon {
    font-size: 26px;
    margin-bottom: 10px;
    display: block;
}

.cc-label {
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.cc-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--tl);
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
}

.soc {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #fff;
    transition: 0.3s ease;
    cursor: pointer;
}

.soc:hover {
    transform: translateY(-4px) scale(1.1);
}

.soc-ig {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.soc-li {
    background: #0A66C2;
}

.soc-tt {
    background: #000;
}

/* FOOTER */
footer {
    background: var(--tl);
    padding: 48px 24px 20px;
    color: rgba(255, 255, 255, 0.75);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 32px;
    margin-bottom: 36px;
}

.footer-brand .fb-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.footer-brand img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2.5px solid var(--pk);
    object-fit: cover;
    margin-right: 8px;
}

.footer-brand .fb-circle span {
    color: var(--tl);
    font-weight: 900;
    font-size: 11px;
}

.footer-brand .fb-name {
    color: #fff;
    font-weight: 800;
    font-size: 15px;
}

.footer-brand .brand-row {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 12px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
}

.ft-title {
    font-weight: 700;
    font-size: 13px;
    color: var(--pk);
    margin-bottom: 12px;
}

.ft-links {
    list-style: none;
    padding: 0;
}

.ft-links li {
    margin-bottom: 8px;
}

.ft-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    transition: 0.2s ease;
}

.ft-links a:hover {
    color: var(--pk);
}

.ft-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 8px;
}

.ft-contact-item i {
    color: var(--pk);
    font-size: 15px;
    width: 16px;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-soc {
    display: flex;
    gap: 12px;
}

.footer-soc a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    transition: 0.2s ease;
}

.footer-soc a:hover {
    color: var(--pk);
}

/* CHATBOT */
#chat-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pk), var(--pk-soft));
    border: none;
    cursor: pointer;
    z-index: 2000;
    font-size: 24px;
    color: var(--tl);
    box-shadow: 0 8px 28px rgba(241, 148, 180, 0.55);
    animation: pulse-fab 2.5s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-notif {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: #34d399;
    border-radius: 50%;
    border: 2px solid #fff;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

#chat-win {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 360px;
    height: 510px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(52, 94, 94, 0.2);
    z-index: 1999;
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(52, 94, 94, 0.1);
}

#chat-win.open {
    display: flex;
}

.chat-hdr {
    background: linear-gradient(135deg, var(--tl), var(--tl-dark));
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ch-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pk), var(--pk-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tl);
    font-weight: 900;
    font-size: 13px;
    flex-shrink: 0;
}

.ch-name {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.ch-status {
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dot-on {
    width: 7px;
    height: 7px;
    background: #34d399;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.ch-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.chat-msgs {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f8fafc;
}

.msg {
    max-width: 84%;
    animation: fadeUp 0.3s ease;
}

.msg.bot {
    align-self: flex-start;
}

.msg.user {
    align-self: flex-end;
}

.msg-bbl {
    padding: 11px 15px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.65;
}

.msg.bot .msg-bbl {
    background: #fff;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.msg.user .msg-bbl {
    background: linear-gradient(135deg, var(--pk), var(--pk-soft));
    color: var(--tl);
    border-bottom-right-radius: 4px;
    font-weight: 600;
}

.msg-time {
    font-size: 10px;
    color: #94a3b8;
    margin-top: 4px;
    padding: 0 4px;
}

.typing {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 11px 15px;
}

.typing span {
    width: 7px;
    height: 7px;
    background: #94a3b8;
    border-radius: 50%;
    animation: bounce 0.8s ease-in-out infinite;
}

.typing span:nth-child(2) {
    animation-delay: 0.15s;
}

.typing span:nth-child(3) {
    animation-delay: 0.3s;
}

.chat-inp-area {
    padding: 13px 16px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 10px;
    align-items: center;
    background: #fff;
}

#chat-inp {
    flex: 1;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    padding: 10px 16px;
    font-size: 13px;
    outline: none;
    transition: 0.2s ease;
    color: #1e293b;
}

#chat-inp:focus {
    border-color: var(--pk);
}

#chat-send {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--pk), var(--pk-soft));
    border: none;
    border-radius: 50%;
    color: var(--tl);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: 0.2s ease;
}

#chat-send:hover {
    transform: scale(1.1);
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

@keyframes pulse-fab {
    0%,
    100% {
        box-shadow: 0 8px 28px rgba(241, 148, 180, 0.55);
    }

    50% {
        box-shadow: 0 8px 36px rgba(241, 148, 180, 0.85);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none !important;
    }

    .hamburger {
        display: block;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 56px 20px;
    }

    .hero-card-float {
        display: none;
    }

    .hero-stats {
        justify-content: center;
        gap: 24px;
    }

    .about-inner,
    .quote-grid {
        grid-template-columns: 1fr;
    }

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

    .ads-pair {
        grid-template-columns: 1fr;
    }

    .testi-card {
        padding: 28px 22px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

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