/*
Theme Name: FuturePack CIC
Theme URI: https://futurepack.org
Author: FuturePack CIC
Author URI: https://futurepack.org
Description: Custom theme for FuturePack CIC — the UK's sustainable packaging directory and regulatory intelligence hub. Features include a supplier directory, regulatory hub, innovation showcase, and newsletter integration.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: futurepack
*/

/* ========== RESET & VARIABLES ========== */
:root {
  --deep: #0B3D3D;
  --teal: #147A6E;
  --teal-light: #1A9C8B;
  --amber: #D4913D;
  --amber-light: #F0C27A;
  --cream: #F7F5F0;
  --sand: #EDE8DF;
  --white: #FFFFFF;
  --charcoal: #1A1A2E;
  --grey-800: #2D2D3A;
  --grey-600: #5A5A6E;
  --grey-400: #9494A4;
  --grey-200: #D4D4DC;
  --grey-100: #ECECF0;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 16px rgba(11,61,61,0.08);
  --shadow-lg: 0 8px 40px rgba(11,61,61,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Source Serif 4', Georgia, serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; line-height: 1.2; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber); }
img { max-width: 100%; height: auto; }
ul, ol { margin-left: 1.5rem; }

/* ========== HEADER ========== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-200);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 2rem;
}
.logo { display: flex; align-items: center; gap: 0.75rem; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--deep); }
.logo-mark { width: 44px; height: 44px; background: var(--teal); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; font-weight: 800; }
.logo span { color: var(--teal); }
.logo small { display: block; font-size: 0.65rem; font-weight: 400; color: var(--grey-600); letter-spacing: 0.08em; text-transform: uppercase; margin-top: -2px; }

.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav a { font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 500; color: var(--grey-800); padding: 0.5rem 1rem; position: relative; }
.main-nav a::after { content: ''; position: absolute; bottom: 0; left: 1rem; right: 1rem; height: 2px; background: var(--teal); transform: scaleX(0); transition: transform var(--transition); }
.main-nav a:hover { color: var(--teal); }
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav a.current { color: var(--teal); }
.main-nav a.current::after { transform: scaleX(1); }
.nav-cta { background: var(--teal) !important; color: white !important; padding: 0.5rem 1.25rem !important; border-radius: var(--radius); font-weight: 600 !important; margin-left: 0.5rem; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--deep) !important; color: white !important; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.mobile-toggle svg { width: 28px; height: 28px; color: var(--charcoal); }

/* ========== BUTTONS ========== */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.95rem; padding: 0.85rem 1.75rem; border-radius: var(--radius); border: none; cursor: pointer; transition: all var(--transition); }
.btn-primary { background: var(--amber); color: white; }
.btn-primary:hover { background: #C07D2F; color: white; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(212,145,61,0.4); }
.btn-secondary { background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.3); }
.btn-secondary:hover { background: rgba(255,255,255,0.25); color: white; }
.btn-teal { background: var(--teal); color: white; }
.btn-teal:hover { background: var(--deep); color: white; }
.btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: white; }

/* ========== PAGE HERO ========== */
.page-hero { background: linear-gradient(135deg, var(--deep) 0%, #0F5249 100%); padding: 4rem 2rem 3rem; color: white; text-align: center; }
.page-hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 0.75rem; }
.page-hero p { font-size: 1.1rem; opacity: 0.85; max-width: 640px; margin: 0 auto; }

/* ========== SECTIONS ========== */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-narrow { max-width: 960px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.4rem; font-weight: 700; color: var(--deep); margin-bottom: 0.75rem; }
.section-header p { font-size: 1.1rem; color: var(--grey-600); max-width: 640px; margin: 0 auto; }
.section-label { font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); margin-bottom: 0.5rem; }
.section-alt { background: var(--white); }

/* ========== HOME HERO ========== */
.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--deep) 0%, #0F5249 40%, var(--teal) 100%); padding: 6rem 2rem 5rem; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-content { color: white; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); padding: 0.35rem 1rem; border-radius: 100px; font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 500; color: var(--amber-light); margin-bottom: 1.5rem; }
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber-light); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-size: 3.2rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.hero h1 em { font-style: normal; color: var(--amber-light); }
.hero p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 2rem; max-width: 520px; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-lg); padding: 1.5rem; color: white; }
.hero-card:first-child { grid-column: 1 / -1; }
.hero-card .card-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.hero-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.35rem; }
.hero-card p { font-size: 0.85rem; opacity: 0.8; line-height: 1.5; }

/* ========== CATEGORY CARDS ========== */
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.cat-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.75rem; border: 1px solid var(--grey-200); transition: all var(--transition); cursor: pointer; text-align: center; }
.cat-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.cat-card h3 { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600; color: var(--deep); margin-bottom: 0.35rem; }
.cat-card p { font-size: 0.82rem; color: var(--grey-600); line-height: 1.5; }
.cat-count { font-family: 'Outfit', sans-serif; font-size: 0.75rem; color: var(--teal); font-weight: 600; margin-top: 0.5rem; }

/* ========== REGULATORY CARDS ========== */
.reg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.reg-card { background: var(--cream); border-radius: var(--radius-lg); padding: 2rem; border-left: 4px solid var(--teal); transition: all var(--transition); }
.reg-card:hover { box-shadow: var(--shadow); }
.tag { display: inline-block; font-family: 'Outfit', sans-serif; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.2rem 0.6rem; border-radius: 4px; margin-bottom: 0.75rem; }
.tag-live { background: #DCFCE7; color: #166534; }
.tag-upcoming { background: #FEF9C3; color: #854D0E; }
.tag-new { background: #DBEAFE; color: #1E40AF; }
.reg-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.15rem; font-weight: 600; color: var(--deep); margin-bottom: 0.5rem; }
.reg-card p { font-size: 0.92rem; color: var(--grey-600); margin-bottom: 1rem; }
.reg-card a { font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 600; }

/* ========== FEATURE CARDS ========== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; text-align: center; border: 1px solid var(--grey-200); transition: all var(--transition); }
.feature-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.feature-icon { width: 64px; height: 64px; border-radius: 14px; background: linear-gradient(135deg, var(--teal), var(--deep)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-size: 1.6rem; }
.feature-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.15rem; font-weight: 600; color: var(--deep); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.92rem; color: var(--grey-600); }

/* ========== CTA BANNER ========== */
.cta-banner { background: linear-gradient(135deg, var(--deep), var(--teal)); border-radius: var(--radius-lg); padding: 4rem 3rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; color: white; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; right: -60px; top: -60px; width: 300px; height: 300px; border-radius: 50%; background: rgba(212,145,61,0.15); }
.cta-banner h2 { font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; }
.cta-banner p { opacity: 0.9; max-width: 500px; }

/* ========== NEWSLETTER ========== */
.newsletter { background: var(--deep); padding: 4rem 2rem; text-align: center; color: white; }
.newsletter h2 { font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; }
.newsletter p { opacity: 0.8; margin-bottom: 1.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.newsletter-form { display: flex; gap: 0.75rem; max-width: 500px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 0.85rem 1.25rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); color: white; font-family: 'Source Serif 4', serif; font-size: 0.95rem; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form button { white-space: nowrap; }

/* ========== DIRECTORY ========== */
.search-box { max-width: 700px; margin: 0 auto; position: relative; }
.search-box input { width: 100%; padding: 1rem 1.25rem 1rem 3rem; border-radius: var(--radius-lg); border: none; font-family: 'Source Serif 4', serif; font-size: 1rem; background: rgba(255,255,255,0.95); color: var(--charcoal); box-shadow: var(--shadow-lg); }
.search-box input::placeholder { color: var(--grey-400); }
.search-box svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--grey-400); }
.search-box input:focus { outline: 2px solid var(--amber); outline-offset: 2px; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; justify-content: center; }
.filter-btn { font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 500; padding: 0.45rem 1rem; border-radius: 100px; border: 1px solid var(--grey-200); background: var(--white); color: var(--grey-600); cursor: pointer; transition: all var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--teal); color: white; border-color: var(--teal); }

.listings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }
.listing-card { background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-lg); padding: 1.75rem; transition: all var(--transition); }
.listing-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.listing-card.premium { border-color: var(--amber); border-width: 2px; }
.listing-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.listing-logo { width: 56px; height: 56px; border-radius: 10px; background: var(--grey-100); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.listing-badge { font-family: 'Outfit', sans-serif; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.2rem 0.6rem; border-radius: 4px; }
.badge-premium { background: linear-gradient(135deg, var(--amber), #E5A650); color: white; }
.badge-enhanced { background: var(--teal); color: white; }
.listing-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--deep); margin-bottom: 0.25rem; }
.listing-loc { font-family: 'Outfit', sans-serif; font-size: 0.8rem; color: var(--grey-400); margin-bottom: 0.75rem; }
.listing-card > p { font-size: 0.88rem; color: var(--grey-600); margin-bottom: 1rem; line-height: 1.6; }
.listing-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.listing-tag { font-family: 'Outfit', sans-serif; font-size: 0.72rem; padding: 0.15rem 0.5rem; border-radius: 4px; background: var(--cream); color: var(--grey-600); }
.listing-link { display: block; margin-top: 1rem; font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--teal); }

/* ========== REGULATORY HUB ========== */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--grey-200); }
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-dot { position: absolute; left: -2.5rem; top: 0.35rem; width: 18px; height: 18px; border-radius: 50%; border: 3px solid var(--teal); background: var(--cream); }
.timeline-dot.active { background: var(--teal); }
.timeline-dot.upcoming { border-color: var(--amber); }
.timeline-item h3 { font-size: 1.2rem; font-weight: 700; color: var(--deep); margin-bottom: 0.25rem; }
.timeline-item .date { font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 600; color: var(--teal); margin-bottom: 0.5rem; }
.timeline-item p { font-size: 0.95rem; color: var(--grey-600); max-width: 680px; }
.reg-detail { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; margin-bottom: 2rem; border-left: 4px solid var(--teal); }
.reg-detail h2 { font-size: 1.6rem; font-weight: 700; color: var(--deep); margin-bottom: 0.5rem; }
.reg-detail .status { display: inline-block; font-family: 'Outfit', sans-serif; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.2rem 0.6rem; border-radius: 4px; margin-bottom: 1rem; }
.status-live { background: #DCFCE7; color: #166534; }
.status-upcoming { background: #FEF9C3; color: #854D0E; }
.status-key { background: #DBEAFE; color: #1E40AF; }
.reg-detail h3 { font-size: 1.1rem; font-weight: 600; color: var(--deep); margin-top: 1.5rem; margin-bottom: 0.5rem; }
.reg-detail p { font-size: 0.95rem; color: var(--grey-600); margin-bottom: 0.75rem; line-height: 1.7; }
.reg-detail ul { margin: 0.5rem 0 1rem 1.5rem; color: var(--grey-600); font-size: 0.95rem; }
.reg-detail ul li { margin-bottom: 0.35rem; }
.callout { background: var(--cream); border: 1px solid var(--grey-200); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1.5rem 0; font-size: 0.9rem; color: var(--grey-600); }
.callout strong { color: var(--deep); }

/* ========== INNOVATION ========== */
.innov-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.innov-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--grey-200); transition: all var(--transition); }
.innov-card:hover { box-shadow: var(--shadow); border-color: var(--teal); }
.innov-banner { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.innov-banner.mat { background: linear-gradient(135deg, #2D7A5F, #1A5C5C); }
.innov-banner.tech { background: linear-gradient(135deg, #5C3D1A, var(--amber)); }
.innov-banner.proc { background: linear-gradient(135deg, #1A3D5C, #2E8B8B); }
.innov-body { padding: 1.75rem; }
.trl { display: inline-block; font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.15rem 0.5rem; border-radius: 4px; margin-bottom: 0.75rem; }
.trl-high { background: #DCFCE7; color: #166534; }
.trl-mid { background: #FEF9C3; color: #854D0E; }
.trl-low { background: #DBEAFE; color: #1E40AF; }
.innov-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--deep); margin-bottom: 0.5rem; }
.innov-card p { font-size: 0.9rem; color: var(--grey-600); line-height: 1.6; margin-bottom: 1rem; }
.read-more { font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--teal); }

/* ========== ABOUT ========== */
.content-block { margin-bottom: 3rem; }
.content-block h2 { font-size: 1.6rem; font-weight: 700; color: var(--deep); margin-bottom: 1rem; }
.content-block p { font-size: 1rem; color: var(--grey-600); margin-bottom: 1rem; line-height: 1.8; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2rem 0; }
.value-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; text-align: center; border: 1px solid var(--grey-200); }
.value-card .v-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.value-card h3 { font-size: 1rem; font-weight: 600; color: var(--deep); margin-bottom: 0.35rem; }
.value-card p { font-size: 0.88rem; color: var(--grey-600); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 2rem 0; }
.team-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--grey-200); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--deep)); display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 700; color: white; margin-bottom: 1rem; }
.team-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--deep); margin-bottom: 0.15rem; }
.team-card .role { font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 500; color: var(--teal); margin-bottom: 0.75rem; }
.team-card p { font-size: 0.9rem; color: var(--grey-600); line-height: 1.6; }
.cic-box { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--grey-200); margin: 2rem 0; }
.cic-box h3 { font-size: 1.2rem; font-weight: 700; color: var(--deep); margin-bottom: 0.75rem; }
.cic-box p { font-size: 0.95rem; color: var(--grey-600); margin-bottom: 0.75rem; line-height: 1.7; }

/* ========== CONTACT / PRICING ========== */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin: 2rem 0; }
.pricing-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--grey-200); text-align: center; position: relative; transition: all var(--transition); }
.pricing-card:hover { box-shadow: var(--shadow); }
.pricing-card.featured { border: 2px solid var(--amber); transform: scale(1.03); }
.pricing-card.featured::before { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--amber); color: white; font-family: 'Outfit', sans-serif; font-size: 0.72rem; font-weight: 600; padding: 0.2rem 0.75rem; border-radius: 100px; white-space: nowrap; }
.pricing-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--deep); margin-bottom: 0.5rem; }
.pricing-price { font-size: 2.2rem; font-weight: 800; color: var(--teal); margin-bottom: 0.25rem; font-family: 'Outfit', sans-serif; }
.pricing-price span { font-size: 0.85rem; font-weight: 400; color: var(--grey-400); }
.pricing-period { font-family: 'Outfit', sans-serif; font-size: 0.8rem; color: var(--grey-400); margin-bottom: 1.5rem; }
.pricing-features { text-align: left; margin-bottom: 1.5rem; list-style: none; margin-left: 0; }
.pricing-features li { font-size: 0.85rem; color: var(--grey-600); padding: 0.35rem 0; border-bottom: 1px solid var(--grey-100); display: flex; gap: 0.5rem; }
.pricing-features li::before { content: '\2713'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.pricing-features li.no::before { content: '\2014'; color: var(--grey-400); }
.pricing-features li.no { color: var(--grey-400); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--deep); margin-bottom: 0.35rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.75rem 1rem; border-radius: var(--radius); border: 1px solid var(--grey-200); font-family: 'Source Serif 4', serif; font-size: 0.95rem; color: var(--charcoal); background: var(--white); transition: border var(--transition); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--teal); }
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-info { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--grey-200); }
.contact-info h3 { font-size: 1.2rem; font-weight: 700; color: var(--deep); margin-bottom: 1.5rem; }
.contact-item { margin-bottom: 1.5rem; }
.contact-item h4 { font-size: 0.85rem; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.35rem; font-family: 'Outfit', sans-serif; }
.contact-item p { font-size: 0.92rem; color: var(--grey-600); }

/* ========== BLOG ========== */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--grey-200); display: grid; grid-template-columns: 280px 1fr; transition: all var(--transition); }
.blog-card:hover { box-shadow: var(--shadow); border-color: var(--teal); }
.blog-thumb { background: linear-gradient(135deg, var(--teal), var(--deep)); display: flex; align-items: center; justify-content: center; font-size: 3rem; min-height: 200px; }
.blog-body { padding: 2rem; }
.blog-meta { display: flex; gap: 1rem; margin-bottom: 0.75rem; font-family: 'Outfit', sans-serif; font-size: 0.78rem; color: var(--grey-400); font-weight: 500; }
.blog-meta .cat { background: var(--cream); padding: 0.15rem 0.5rem; border-radius: 4px; color: var(--teal); font-weight: 600; }
.blog-card h2 { font-size: 1.25rem; font-weight: 700; color: var(--deep); margin-bottom: 0.5rem; }
.blog-card h2 a { color: var(--deep); }
.blog-card h2 a:hover { color: var(--teal); }
.blog-card p { font-size: 0.92rem; color: var(--grey-600); line-height: 1.6; margin-bottom: 1rem; }

.cta-section { background: var(--deep); padding: 4rem 2rem; text-align: center; color: white; }
.cta-section h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.cta-section p { opacity: 0.85; max-width: 500px; margin: 0 auto 1.5rem; }

/* ========== FOOTER ========== */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand h3 { font-family: 'Outfit', sans-serif; color: white; font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; max-width: 300px; }
.footer-col h4 { font-family: 'Outfit', sans-serif; color: white; font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); font-size: 0.88rem; padding: 0.25rem 0; }
.footer-col a:hover { color: var(--amber-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
.footer-bottom .legal { max-width: 70%; line-height: 1.5; font-size: 0.75rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 2.5rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .reg-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .hero { padding: 4rem 1.5rem 3rem; }
  .hero h1 { font-size: 2rem; }
  .section { padding: 3rem 1.5rem; }
  .page-hero h1 { font-size: 2rem; }
  .categories-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; padding: 2.5rem 2rem; }
  .newsletter-form { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-thumb { min-height: 120px; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-bottom .legal { max-width: 100%; }
}
