/*
Theme Name: Altillo Creativo
Theme URI: https://altillocreativo.com
Author: Altillo Creativo
Author URI: https://altillocreativo.com
Description: Tema personalizado para Altillo Creativo - Agencia de Publicidad y Comunicación Estratégica. Bogotá D.C., Colombia.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: altillo-creativo
Tags: custom-colors, custom-logo, custom-menu, featured-images, full-width-template, one-page, responsive-layout
*/

/* ============================================================
   ALTILLO CREATIVO — Tema WordPress
   Amarillo: #FBCC30 | Naranja: #F09325 | Negro: #000000
   ============================================================ */

:root {
  --am: #FBCC30;
  --na: #F09325;
  --ne: #000000;
  --bl: #ffffff;
  --gc: #f7f7f7;
  --gm: #555555;
  --gt: #333333;
  --tr: 0.35s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--gt); overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', sans-serif; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: var(--am); border-radius: 3px; }

/* ── ANIMACIONES ── */
@keyframes fadeUp    { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeLeft  { from { opacity:0; transform:translateX(-40px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeRight { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }
@keyframes float     { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-18px); } }
@keyframes pulsewa   { 0%,100% { box-shadow:0 4px 20px rgba(37,211,102,.4); } 50% { box-shadow:0 4px 35px rgba(37,211,102,.7); } }
@keyframes ticker    { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
@keyframes rotateSlow{ from { transform:rotate(0deg); } to { transform:rotate(360deg); } }

.ao { opacity: 0; }
.ao.visible    { animation: fadeUp .7s ease forwards; }
.ao-l.visible  { animation: fadeLeft .7s ease forwards; }
.ao-r.visible  { animation: fadeRight .7s ease forwards; }
.d1{animation-delay:.1s}.d2{animation-delay:.2s}.d3{animation-delay:.3s}
.d4{animation-delay:.4s}.d5{animation-delay:.5s}.d6{animation-delay:.6s}

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(0,0,0,.97); padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; transition: var(--tr);
  border-bottom: 1px solid rgba(251,204,48,.08);
}
#navbar.scrolled { height: 60px; box-shadow: 0 2px 30px rgba(251,204,48,.1); }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 44px; width: auto; transition: transform .4s; }
.nav-logo:hover img { transform: scale(1.06); }
.nav-logo-svg { width: 40px; height: 40px; }
.nav-brand { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 17px; color: #fff; letter-spacing: 1px; }
.nav-brand span { color: var(--am); }
.nav-sub { font-family: 'Montserrat', sans-serif; font-size: 7.5px; color: var(--na); letter-spacing: 2.5px; text-transform: uppercase; display: block; margin-top: 2px; }
#primary-menu { display: flex; gap: 30px; align-items: center; }
#primary-menu li a { color: rgba(255,255,255,.8); font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 12px; letter-spacing: .5px; text-transform: uppercase; transition: color var(--tr); position: relative; padding-bottom: 4px; }
#primary-menu li a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--am); transition: width var(--tr); }
#primary-menu li a:hover { color: var(--am); }
#primary-menu li a:hover::after { width: 100%; }
#primary-menu li.menu-cta a { background: var(--am); color: var(--ne); padding: 9px 22px; border-radius: 4px; font-weight: 700; }
#primary-menu li.menu-cta a::after { display: none; }
#primary-menu li.menu-cta a:hover { background: var(--na); color: #fff; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--am); transition: var(--tr); }

/* ── HERO ── */
#inicio {
  min-height: 100vh; background: #000;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden; padding-top: 68px;
}
.hero-bg-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 60% at 75% 50%, rgba(251,204,48,.07) 0%, transparent 70%), radial-gradient(ellipse 40% 50% at 20% 80%, rgba(240,147,37,.05) 0%, transparent 60%); }
.hero-grid-bg { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(251,204,48,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(251,204,48,.035) 1px, transparent 1px); background-size: 55px 55px; }
.hero-circle { position: absolute; right: -120px; top: 50%; transform: translateY(-50%); width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(251,204,48,.06); animation: rotateSlow 40s linear infinite; }
.hero-circle::before { content: ''; position: absolute; inset: 60px; border-radius: 50%; border: 1px solid rgba(251,204,48,.04); }
.hero-inner { position: relative; z-index: 2; width: 90%; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 0 60px; }
.hero-eyebrow { display: inline-block; background: var(--am); color: var(--ne); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 2px; margin-bottom: 18px; }
.hero-inner h1 { font-size: clamp(34px,4.5vw,60px); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.hero-inner h1 em { font-style: normal; color: var(--am); display: block; }
.hero-inner .hero-desc { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.85; margin-bottom: 36px; max-width: 460px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-prim { background: var(--am); color: var(--ne); padding: 14px 32px; border-radius: 4px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; transition: var(--tr); display: inline-block; }
.btn-prim:hover { background: var(--na); color: #fff; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(251,204,48,.25); }
.btn-out { border: 2px solid var(--am); color: var(--am); padding: 12px 32px; border-radius: 4px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; text-transform: uppercase; transition: var(--tr); display: inline-block; }
.btn-out:hover { background: var(--am); color: var(--ne); transform: translateY(-3px); }
.hero-vis { display: flex; align-items: center; justify-content: center; }
.hero-logo-anim { animation: float 7s ease-in-out infinite; filter: drop-shadow(0 0 50px rgba(251,204,48,.2)); }
.hero-stats { background: rgba(255,255,255,.03); border-top: 1px solid rgba(255,255,255,.07); padding: 22px 0; }
.hero-stats-inner { width: 90%; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.stat { text-align: center; }
.stat strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 38px; font-weight: 900; color: var(--am); line-height: 1; }
.stat span { font-size: 11px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; display: block; }

/* ── SECCIÓN BASE ── */
.ac-section { padding: 90px 6%; }
.sec-hdr { text-align: center; margin-bottom: 60px; }
.sec-tag { display: inline-block; background: var(--am); color: var(--ne); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 2px; margin-bottom: 14px; }
.sec-hdr h2 { font-size: clamp(26px,3.5vw,40px); font-weight: 800; color: var(--ne); line-height: 1.2; margin-bottom: 12px; }
.sec-hdr p { font-size: 15px; color: var(--gm); max-width: 540px; margin: 0 auto; line-height: 1.8; }
.sec-line { width: 44px; height: 4px; background: var(--na); margin: 14px auto 0; border-radius: 2px; }
.on-dark h2 { color: #fff !important; }
.on-dark p { color: rgba(255,255,255,.55) !important; }
.bg-gray { background: var(--gc); }
.bg-black { background: var(--ne); }
.bg-white { background: #fff; }

/* ── TICKER ── */
.ticker-wrap { background: var(--am); overflow: hidden; padding: 13px 0; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: ticker 22s linear infinite; }
.ticker-item { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; color: var(--ne); padding: 0 30px; letter-spacing: .5px; text-transform: uppercase; }
.ticker-item i { margin-right: 8px; color: var(--na); }

/* ── SERVICIOS ── */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(270px,1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.svc-card { background: #fff; border-radius: 10px; padding: 38px 28px; text-align: center; transition: transform var(--tr), box-shadow var(--tr); box-shadow: 0 2px 20px rgba(0,0,0,.05); position: relative; overflow: hidden; border-bottom: 3px solid transparent; }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 0; background: linear-gradient(90deg,var(--am),var(--na)); transition: .4s ease; }
.svc-card:hover { transform: translateY(-10px); box-shadow: 0 20px 45px rgba(0,0,0,.1); border-bottom-color: var(--am); }
.svc-card:hover::before { height: 3px; }
.svc-ico { width: 68px; height: 68px; background: linear-gradient(135deg,var(--am),var(--na)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; font-size: 26px; color: var(--ne); transition: transform var(--tr); }
.svc-card:hover .svc-ico { transform: scale(1.12) rotate(-5deg); }
.svc-card h3 { font-size: 17px; font-weight: 700; color: var(--ne); margin-bottom: 10px; }
.svc-card p { font-size: 13px; color: var(--gm); line-height: 1.75; }

/* ── NOSOTROS ── */
.nos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; max-width: 1200px; margin: 0 auto; }
.nos-img-wrap { position: relative; }
.nos-img-box { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; background: #111; position: relative; }
.nos-img-box img { width: 100%; height: 100%; object-fit: cover; }
.nos-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; min-height: 280px; color: rgba(255,255,255,.3); text-align: center; gap: 10px; }
.nos-placeholder i { font-size: 40px; color: rgba(251,204,48,.3); }
.nos-placeholder span { font-family: 'Montserrat',sans-serif; font-size: 12px; letter-spacing: 1px; }
.nos-badge { position: absolute; bottom: -18px; right: -18px; background: var(--am); border-radius: 50%; width: 110px; height: 110px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-weight: 900; color: var(--ne); box-shadow: 0 8px 30px rgba(251,204,48,.35); }
.nos-badge strong { font-size: 30px; line-height: 1; }
.nos-badge span { font-size: 9px; text-align: center; line-height: 1.3; font-weight: 600; }
.nos-text h2 { font-size: clamp(26px,3vw,38px); font-weight: 800; color: var(--ne); line-height: 1.2; margin-bottom: 18px; }
.nos-text h2 em { font-style: normal; color: var(--na); }
.nos-text p { font-size: 14px; color: var(--gm); line-height: 1.85; margin-bottom: 12px; }
.check-list { list-style: none; margin: 22px 0 32px; display: flex; flex-direction: column; gap: 11px; }
.check-list li { display: flex; align-items: center; gap: 11px; font-size: 13px; color: var(--gt); font-weight: 600; }
.chk { width: 22px; height: 22px; background: var(--am); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }

/* ── PORTAFOLIO ── */
.port-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 1200px; margin: 0 auto; }
.port-item { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; position: relative; cursor: pointer; }
.port-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 44px; transition: transform .5s ease; background-size: cover; background-position: center; }
.port-item:hover .port-bg { transform: scale(1.08); }
.port-ov { position: absolute; inset: 0; background: rgba(0,0,0,.78); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; padding: 20px; text-align: center; }
.port-item:hover .port-ov { opacity: 1; }
.p-tag { background: var(--am); color: var(--ne); padding: 4px 11px; border-radius: 2px; font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; display: inline-block; }
.port-ov h3 { color: var(--am); font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.port-ov p { color: rgba(255,255,255,.8); font-size: 12px; line-height: 1.6; }

/* ── PROCESO ── */
.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; max-width: 1100px; margin: 0 auto; position: relative; }
.proc-connector { position: absolute; top: 31px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg,var(--am),var(--na)); z-index: 0; }
.proc-step { text-align: center; padding: 20px 14px; position: relative; z-index: 1; }
.step-num { width: 62px; height: 62px; background: var(--ne); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 20px; color: var(--am); border: 3px solid var(--am); transition: transform var(--tr), background var(--tr); }
.proc-step:hover .step-num { transform: scale(1.12); background: var(--am); color: var(--ne); }
.proc-step h3 { font-size: 15px; font-weight: 700; color: var(--ne); margin-bottom: 8px; }
.proc-step p { font-size: 13px; color: var(--gm); line-height: 1.7; }

/* ── CLIENTES ── */
.cli-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.cli-inner h3 { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #aaa; margin-bottom: 44px; }
.cli-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 20px; align-items: center; }
.cli-slot { background: var(--gc); border-radius: 10px; height: 90px; display: flex; align-items: center; justify-content: center; transition: var(--tr); overflow: hidden; border: 1.5px dashed rgba(0,0,0,.1); padding: 10px; }
.cli-slot:hover { background: rgba(251,204,48,.08); border-color: rgba(251,204,48,.4); transform: translateY(-4px); }
.cli-slot img { max-width: 100%; max-height: 60px; object-fit: contain; filter: grayscale(100%); opacity: .55; transition: var(--tr); }
.cli-slot:hover img { filter: grayscale(0%); opacity: 1; }
.cli-placeholder { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; color: rgba(0,0,0,.2); display: flex; flex-direction: column; align-items: center; gap: 6px; }
.cli-placeholder i { font-size: 22px; color: rgba(251,204,48,.4); }

/* ── TESTIMONIOS ── */
.test-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 22px; max-width: 1200px; margin: 0 auto; }
.test-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: 12px; padding: 32px; transition: var(--tr); }
.test-card:hover { background: rgba(251,204,48,.07); border-color: rgba(251,204,48,.25); transform: translateY(-5px); }
.stars { color: var(--am); font-size: 14px; margin-bottom: 12px; }
.quote-mark { font-size: 52px; color: var(--am); opacity: .45; line-height: 1; margin-bottom: 12px; font-family: Georgia, serif; }
.test-card > p { color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.85; margin-bottom: 22px; font-style: italic; }
.autor { display: flex; align-items: center; gap: 13px; }
.av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg,var(--am),var(--na)); display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--ne); flex-shrink: 0; }
.av-info strong { display: block; color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; }
.av-info span { color: var(--na); font-size: 11px; }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg,#111,#1a1a1a,#111); padding: 80px 6%; text-align: center; position: relative; overflow: hidden; border-top: 1px solid rgba(251,204,48,.1); border-bottom: 1px solid rgba(251,204,48,.1); }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%,rgba(251,204,48,.06) 0%,transparent 70%); }
.cta-banner h2 { font-size: clamp(26px,4vw,46px); font-weight: 900; color: #fff; margin-bottom: 16px; position: relative; }
.cta-banner h2 span { color: var(--am); }
.cta-banner > p { font-size: 16px; color: rgba(255,255,255,.6); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; }
.cta-banner .hero-btns { justify-content: center; position: relative; }

/* ── CONTACTO ── */
.cont-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; max-width: 1100px; margin: 0 auto; align-items: start; }
.cont-info h3 { font-size: 22px; font-weight: 700; color: var(--ne); margin-bottom: 16px; }
.cont-info > p { font-size: 14px; color: var(--gm); line-height: 1.85; margin-bottom: 28px; }
.info-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.ii-ico { width: 44px; height: 44px; background: var(--am); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; transition: var(--tr); }
.info-item:hover .ii-ico { background: var(--na); }
.ii-ico i { color: var(--ne); }
.ii-text strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px; color: var(--ne); margin-bottom: 2px; }
.ii-text a, .ii-text span { font-size: 13px; color: var(--gm); transition: color var(--tr); }
.ii-text a:hover { color: var(--na); }
.cont-form { background: #fff; border-radius: 14px; padding: 42px; box-shadow: 0 10px 50px rgba(0,0,0,.07); }
.cont-form h3 { font-size: 20px; font-weight: 700; color: var(--ne); margin-bottom: 24px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.f-group { margin-bottom: 16px; }
.f-group label { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: .8px; color: var(--ne); margin-bottom: 7px; text-transform: uppercase; }
.f-group input, .f-group select, .f-group textarea { width: 100%; padding: 12px 15px; border: 1.5px solid #e5e5e5; border-radius: 7px; font-family: 'Open Sans', sans-serif; font-size: 13px; color: var(--gt); background: #fff; transition: border-color var(--tr), box-shadow var(--tr); outline: none; resize: none; }
.f-group input:focus, .f-group select:focus, .f-group textarea:focus { border-color: var(--am); box-shadow: 0 0 0 3px rgba(251,204,48,.12); }
.f-group textarea { height: 115px; }
.f-btn { width: 100%; background: var(--ne); color: var(--am); border: none; padding: 15px; border-radius: 7px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: var(--tr); }
.f-btn:hover { background: var(--am); color: var(--ne); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(251,204,48,.3); }
.mapa-wrap { max-width: 1100px; margin: 60px auto 0; border-radius: 14px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,.12); border: 3px solid rgba(251,204,48,.2); }
.mapa-wrap iframe { width: 100%; height: 350px; border: none; display: block; }

/* ── REDES FLOTANTES ── */
.social-float { position: fixed; left: 18px; top: 50%; transform: translateY(-50%); z-index: 999; display: flex; flex-direction: column; gap: 8px; }
.sf-link { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: transform var(--tr), box-shadow var(--tr); box-shadow: 0 3px 12px rgba(0,0,0,.25); }
.sf-link:hover { transform: scale(1.2) translateX(5px); }
.sf-fb { background: #1877F2; color: #fff; }
.sf-ig { background: radial-gradient(circle at 30% 107%,#fdf497 0%,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285AEB 90%); color: #fff; }
.sf-li { background: #0A66C2; color: #fff; }
.sf-tt { background: #000; color: #fff; border: 1px solid #333; }
.sf-yt { background: #FF0000; color: #fff; }

/* ── WHATSAPP FLOTANTE ── */
.wa-float { position: fixed; right: 24px; bottom: 28px; z-index: 999; }
.wa-float a { display: flex; align-items: center; gap: 10px; background: #25D366; color: #fff; padding: 13px 20px 13px 15px; border-radius: 50px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; box-shadow: 0 5px 22px rgba(37,211,102,.4); transition: var(--tr); animation: pulsewa 2.5s infinite; }
.wa-float a:hover { background: #128C7E; transform: translateY(-3px); animation: none; }
.wa-float i { font-size: 22px; }

/* ── FOOTER ── */
footer { background: #090909; color: rgba(255,255,255,.65); padding: 72px 6% 28px; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; max-width: 1200px; margin: 0 auto 50px; }
.ft-brand p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.85; margin: 16px 0 24px; max-width: 300px; }
.ft-logo-wrap { display: flex; align-items: center; gap: 11px; margin-bottom: 4px; }
.ft-logo-wrap img { height: 38px; width: auto; }
.ft-brand-name { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 16px; color: #fff; letter-spacing: 1px; }
.ft-brand-name span { color: var(--am); }
.ft-brand-sub { font-family: 'Montserrat', sans-serif; font-size: 7px; color: var(--na); letter-spacing: 2.5px; display: block; margin-top: 2px; }
.ft-social { display: flex; gap: 9px; }
.ft-social a { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); font-size: 15px; transition: var(--tr); }
.ft-social a:hover { background: var(--am); color: var(--ne); }
.ft-col h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; color: #fff; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--am); display: inline-block; }
.ft-col ul li a { color: rgba(255,255,255,.48); font-size: 13px; transition: var(--tr); display: flex; align-items: center; gap: 7px; padding: 4px 0; }
.ft-col ul li a:hover { color: var(--am); padding-left: 5px; }
.ft-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.ft-bottom p { font-size: 12px; color: rgba(255,255,255,.35); }
.ft-bottom span { color: var(--am); }

/* ── WORDPRESS ADMIN BAR FIX ── */
.admin-bar #navbar { top: 32px; }
@media screen and (max-width:782px) { .admin-bar #navbar { top: 46px; } }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .cli-grid { grid-template-columns: repeat(3,1fr); }
  .port-grid { grid-template-columns: repeat(2,1fr); }
  .proc-connector { display: none; }
  .proc-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:768px) {
  #primary-menu { display: none; flex-direction: column; }
  #primary-menu.open { display: flex; position: absolute; top: 68px; left: 0; right: 0; background: #000; padding: 24px 6%; gap: 20px; border-top: 2px solid var(--am); }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-vis { display: none; }
  .hero-btns { justify-content: center; }
  .nos-grid { grid-template-columns: 1fr; }
  .nos-badge { right: 10px; }
  .port-grid { grid-template-columns: 1fr 1fr; }
  .cont-grid { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; gap: 28px; }
  .ft-bottom { flex-direction: column; text-align: center; }
  .social-float { display: none; }
  .cli-grid { grid-template-columns: repeat(2,1fr); }
  .ac-section { padding: 60px 5%; }
}
@media(max-width:480px) {
  .port-grid { grid-template-columns: 1fr; }
  .stat strong { font-size: 30px; }
  .cont-form { padding: 26px; }
}
</style>
