/* LifeCowork — Shared CSS for SEO Landing Pages
   Applies to: /coworking-maspalomas/, /coworking-gran-canaria/,
               /digital-nomad-gran-canaria/, /coworking-playa-del-ingles/,
               /day-pass-coworking-gran-canaria/
   To change logo, nav, footer, colors or fonts: edit ONLY this file.
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black: #111111; --black-d: #0A0A0A;
  --gold: #C9A64A; --gold-lt: #E8C97A; --gold-bg: #FBF6EC;
  --white: #FFFFFF; --off: #F8F7F5;
  --text: #222222; --muted: #666666; --border: #E8E4DC;
  --max: 860px; --nav: 68px; --r: 12px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* NAV */
nav { background: var(--black-d); padding: 0 24px; height: var(--nav); display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(201,166,74,.15); }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 40px; }
.nav-logo span { color: var(--gold); font-weight: 700; font-size: 15px; }
.nav-back { color: rgba(255,255,255,.5); font-size: 13px; }
.nav-back:hover { color: var(--gold); }

/* HERO */
.hero { background: var(--black-d); padding: 72px 24px 64px; text-align: center; border-bottom: 1px solid rgba(201,166,74,.2); }
.tag { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 5px 14px; border-radius: 100px; margin-bottom: 20px; }
.hero h1 { color: var(--white); font-size: clamp(26px, 4vw, 44px); font-weight: 900; line-height: 1.1; letter-spacing: -.02em; max-width: 700px; margin: 0 auto 20px; }
.hero p { color: rgba(255,255,255,.65); font-size: 17px; max-width: 580px; margin: 0 auto 36px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 100px; font-size: 15px; font-weight: 600; font-family: inherit; cursor: pointer; border: none; transition: all .2s; }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: var(--white); transform: translateY(-1px); }

/* STATS BAR */
.stats { background: var(--black); border-bottom: 1px solid rgba(201,166,74,.15); padding: 20px 24px; }
.stats-in { max-width: var(--max); margin: 0 auto; display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-val { font-size: 22px; font-weight: 900; color: var(--gold); }
.stat-lbl { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 3px; letter-spacing: .04em; }

/* SECTIONS */
.sec { padding: 72px 0; }
.sec-alt { background: var(--off); }
h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 16px; }
h2 .gold { color: var(--gold); }
.lead { font-size: 17px; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }

/* INTRO */
.intro p { font-size: 16px; line-height: 1.85; color: #444; margin-bottom: 16px; }

/* INCLUDES LIST */
.inc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; margin-top: 32px; }
.inc-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 16px 20px; display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; }
.inc-ico { font-size: 20px; flex-shrink: 0; }

/* PRICING */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
@media(max-width:640px){ .price-grid { grid-template-columns: 1fr; } }
.price-card { border: 1px solid var(--border); border-radius: 16px; padding: 32px 24px; background: var(--white); position: relative; }
.price-card.hot { background: var(--black); border-color: var(--gold); }
.price-card.hot * { color: var(--white) !important; }
.hot-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--black) !important; font-size: 11px; font-weight: 800; padding: 4px 14px; border-radius: 100px; white-space: nowrap; }
.price-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 12px; }
.price-amount { font-size: 48px; font-weight: 900; color: var(--gold); line-height: 1; }
.price-amount sup { font-size: 22px; vertical-align: super; }
.price-period { font-size: 12px; color: var(--muted); margin: 8px 0 20px; }
.price-feats { list-style: none; margin-bottom: 24px; }
.price-feats li { font-size: 14px; padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.price-feats li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.price-card.hot .price-feats li { border-color: rgba(255,255,255,.1); }
.btn-w { width: 100%; justify-content: center; }

/* FAQ */
.faq-list { margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 20px 0; font-size: 16px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: inherit; color: var(--text); }
.faq-ico { font-size: 20px; color: var(--gold); transition: transform .2s; flex-shrink: 0; }
.faq-a { display: none; padding-bottom: 20px; font-size: 15px; color: #555; line-height: 1.8; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-ico { transform: rotate(45deg); }

/* CTA */
.cta { background: var(--black); padding: 72px 24px; text-align: center; }
.cta h2 { color: var(--white); margin-bottom: 12px; }
.cta p { color: rgba(255,255,255,.55); margin-bottom: 32px; font-size: 16px; }
.cta-info { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-top: 32px; }
.cta-info span { color: rgba(255,255,255,.5); font-size: 14px; }
.cta-info strong { color: var(--gold); }

/* FOOTER */
footer { background: var(--black-d); padding: 28px 24px; text-align: center; border-top: 1px solid rgba(201,166,74,.1); }
footer p { color: rgba(255,255,255,.3); font-size: 12px; }
footer a { color: rgba(255,255,255,.4); margin: 0 8px; }
footer a:hover { color: var(--gold); }

/* WA FLOAT */
.wa { position: fixed; bottom: 24px; right: 24px; z-index: 999; background: #25D366; color: white; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .2s; }
.wa:hover { transform: scale(1.08); }
