/* ── Global Sentynel — Homepage Styles ── */

/* ─── Hero ─── */
.hero { position: relative; min-height: 580px; background: linear-gradient(135deg, var(--navy) 0%, #003d6b 60%, #00567a 100%); display: flex; align-items: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?w=1400&q=80') center/cover no-repeat; opacity: 0.18; }
.hero-globe-bg { position: absolute; right: -60px; bottom: -60px; opacity: 0.04; pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 0; width: 100%; }
.hero-tag { display: inline-block; background: rgba(255,172,0,0.18); color: var(--gold); border: 1px solid rgba(255,172,0,0.35); font-size: 12px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 20px; }
.hero h1 { font-size: 46px; font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 18px; letter-spacing: -0.5px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.78); margin-bottom: 36px; line-height: 1.7; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; overflow: hidden; margin-top: 40px; }
.stat { padding: 20px 18px; background: rgba(0,38,65,0.5); text-align: center; }
.stat strong { display: block; font-size: 28px; font-weight: 800; color: var(--gold); line-height: 1.1; }
.stat span { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 500; }
.hero-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 16px; overflow: hidden; }
.hero-card-header { padding: 20px 24px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; gap: 14px; }
.hero-card-logo { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-card-logo svg { width: 32px; height: 32px; }
.hero-card-logo img { width: 32px; height: 32px; }
.hero-card-header-text strong { display: block; color: var(--white); font-size: 14px; font-weight: 700; }
.hero-card-header-text span { color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.hero-card-body { padding: 16px 24px 24px; }
.hero-card-title { color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; margin-bottom: 12px; }
.service-pill { display: flex; align-items: center; gap: 10px; padding: 9px 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 7px; margin-bottom: 6px; color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500; transition: background 0.2s; }
.service-pill:hover { background: rgba(255,255,255,0.1); }
.service-pill-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ─── Differentiators ─── */
.diff-section { background: var(--light); }
.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.diff-card { background: var(--white); border-radius: 12px; padding: 28px 24px; border: 1px solid var(--border); transition: box-shadow 0.2s, transform 0.2s; }
.diff-card:hover { box-shadow: 0 8px 24px rgba(0,38,65,0.1); transform: translateY(-3px); }
.diff-icon { width: 48px; height: 48px; background: rgba(255,172,0,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.diff-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--gold-dark); stroke-width: 2; }
.diff-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.diff-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ─── Services ─── */
.services-section { background: var(--white); position: relative; }
.services-section::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1400&q=80') center/cover no-repeat; opacity: 0.03; pointer-events: none; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { border: 1px solid var(--border); border-radius: 14px; padding: 30px; transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.service-card:hover { box-shadow: 0 10px 32px rgba(0,38,65,0.1); border-color: #c9d4de; transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 52px; height: 52px; background: var(--navy); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; flex-shrink: 0; }
.service-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 2; }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; margin-bottom: 18px; flex: 1; }
.service-new { position: absolute; top: 16px; right: 16px; background: var(--gold); color: var(--navy); font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; }
.learn-more { font-size: 13px; font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: 5px; opacity: 0.55; transition: opacity 0.2s, gap 0.2s; margin-top: auto; }
.service-card:hover .learn-more { opacity: 1; gap: 8px; }

/* ─── Solutions two-track ─── */
.solutions-section { background: var(--navy); }
.solutions-tracks { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.track { border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,0.12); }
.track-header { padding: 32px; }
.track-enterprise .track-header { background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)); }
.track-managed .track-header { background: linear-gradient(135deg, rgba(255,172,0,0.15), rgba(255,172,0,0.06)); border-bottom: 1px solid rgba(255,172,0,0.2); }
.track-badge { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 14px; }
.track-enterprise .track-badge { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.track-managed .track-badge { background: rgba(255,172,0,0.25); color: var(--gold); }
.track-header h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.track-header p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; }
.track-body { padding: 28px 32px; background: rgba(0,0,0,0.2); }
.track-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.track-item:last-child { border-bottom: none; }
.track-item-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.track-enterprise .track-item-icon { background: rgba(255,255,255,0.08); }
.track-managed .track-item-icon { background: rgba(255,172,0,0.15); }
.track-item-icon svg { width: 18px; height: 18px; stroke-width: 2; fill: none; }
.track-enterprise .track-item-icon svg { stroke: rgba(255,255,255,0.7); }
.track-managed .track-item-icon svg { stroke: var(--gold); }
.track-item-text h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.track-item-text p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.track-footer { padding: 24px 32px; background: rgba(0,0,0,0.25); border-top: 1px solid rgba(255,255,255,0.07); }

/* ─── About strip ─── */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap { border-radius: 16px; overflow: hidden; background: var(--navy); aspect-ratio: 4/3; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); color: var(--navy); border-radius: 12px; padding: 18px 22px; text-align: center; box-shadow: 0 8px 24px rgba(255,172,0,0.3); }
.about-badge strong { display: block; font-size: 28px; font-weight: 800; line-height: 1; }
.about-badge span { font-size: 12px; font-weight: 600; }
.about-content p { color: var(--text-light); font-size: 15px; line-height: 1.75; margin-bottom: 16px; }
