/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1a56db;
  --primary-dark: #1040b0;
  --primary-light: #e8f0fe;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --text: #111827;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --bg: #f9fafb;
  --white: #ffffff;
  --success: #10b981;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

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

ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-title { font-size: 2rem; font-weight: 800; text-align: center; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--text-muted); font-size: 1.05rem; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.mt-2 { margin-top: 32px; }
.hidden { display: none !important; }
.badge { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.badge-featured { background: var(--accent); color: #fff; margin-bottom: 12px; }
.badge-schengen { background: #dbeafe; color: var(--primary); }
.badge-nonschengen { background: #fef3c7; color: #92400e; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 24px; border-radius: 8px; font-weight: 600;
  font-size: .95rem; cursor: pointer; border: 2px solid transparent;
  transition: all .2s;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); color: #fff; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.25rem; font-weight: 700; color: var(--text);
}
.logo:hover { color: var(--text); }
.logo-icon { font-size: 1.5rem; }
.logo strong { color: var(--primary); }

.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px; border-radius: 6px;
  font-size: .92rem; font-weight: 500; color: var(--text);
  transition: background .15s;
}
.main-nav a:hover, .main-nav a.active { background: var(--primary-light); color: var(--primary); }

.dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 200px; padding: 8px 0; flex-direction: column; z-index: 200;
}
.dropdown:hover .dropdown-menu { display: flex; }
.dropdown-menu li a {
  display: block; padding: 10px 18px;
  font-size: .9rem; border-radius: 0;
}
.dropdown-menu li a:hover { background: var(--bg); }

.hamburger {
  display: none; background: none; border: none;
  font-size: 1.5rem; cursor: pointer; color: var(--text);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1a56db 0%, #0d3b8e 60%, #0a2d6e 100%);
  padding: 80px 0 96px;
  position: relative; overflow: hidden;
}
.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-content { position: relative; text-align: center; color: #fff; }
.hero-content h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.highlight { color: var(--accent); }
.hero-sub { font-size: 1.15rem; opacity: .9; max-width: 560px; margin: 0 auto 36px; }
.hero-badges { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.hero-badges span {
  background: rgba(255,255,255,.15); color: #fff;
  padding: 6px 16px; border-radius: 999px; font-size: .85rem; font-weight: 500;
}

/* SEARCH BAR */
.search-bar {
  display: flex; max-width: 520px; margin: 0 auto;
  background: var(--white); border-radius: 10px;
  overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.search-bar input {
  flex: 1; padding: 16px 20px; border: none; outline: none;
  font-size: 1rem; font-family: var(--font); color: var(--text);
}
.search-bar button {
  padding: 16px 28px; background: var(--accent); color: #fff;
  border: none; font-weight: 700; font-size: 1rem; cursor: pointer;
  font-family: var(--font); transition: background .2s;
}
.search-bar button:hover { background: var(--accent-dark); }
.search-results {
  max-width: 520px; margin: 8px auto 0;
  background: var(--white); border-radius: 10px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.search-results a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; color: var(--text); font-weight: 500;
  border-bottom: 1px solid var(--border); transition: background .15s;
}
.search-results a:last-child { border-bottom: none; }
.search-results a:hover { background: var(--bg); }

/* ===== FEATURED COUNTRY ===== */
.featured-country { background: var(--bg); }
.featured-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
  background: var(--white); border-radius: 20px;
  padding: 48px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.featured-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.featured-text p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
.feature-list { margin-bottom: 28px; }
.feature-list li { padding: 5px 0; color: var(--text); font-size: .95rem; }
.feature-list li::before { content: "✓ "; color: var(--success); font-weight: 700; }

.country-illustration {
  border-radius: 16px; padding: 40px 32px;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  min-height: 260px; justify-content: center;
}
.spain-bg { background: linear-gradient(135deg, #c60b1e 0%, #aa0e1b 50%, #f1bf00 100%); }
.france-bg { background: linear-gradient(135deg, #002395 0%, #fff 50%, #ED2939 100%); }
.germany-bg { background: linear-gradient(180deg, #000 0%, #D00 50%, #FFCE00 100%); }
.italy-bg { background: linear-gradient(90deg, #009246 0%, #fff 50%, #CE2B37 100%); }
.portugal-bg { background: linear-gradient(90deg, #006600 30%, #FF0000 30%); }
.netherlands-bg { background: linear-gradient(180deg, #AE1C28 33%, #fff 33%, #fff 66%, #21468B 66%); }
.greece-bg { background: linear-gradient(135deg, #0D5EAF 0%, #fff 100%); }
.austria-bg { background: linear-gradient(180deg, #ED2939 33%, #fff 33%, #fff 66%, #ED2939 66%); }
.switzerland-bg { background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%); }
.poland-bg { background: linear-gradient(180deg, #fff 50%, #DC143C 50%); }

.flag-large { font-size: 5rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,.3)); }
.country-stat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%;
}
.stat {
  background: rgba(255,255,255,.2); border-radius: 10px;
  padding: 12px; text-align: center; color: #fff;
  backdrop-filter: blur(4px);
}
.stat strong { display: block; font-size: 1.4rem; font-weight: 800; }
.stat span { font-size: .78rem; opacity: .9; }

/* ===== SCHENGEN BAND ===== */
.schengen-band { background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%); }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.info-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow);
  border: 1px solid #dbeafe;
}
.info-icon { font-size: 2rem; margin-bottom: 12px; }
.info-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.info-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* ===== COUNTRY GRID ===== */
.country-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.country-card {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--white);
  color: var(--text); transition: all .2s; box-shadow: var(--shadow);
}
.country-card:hover {
  border-color: var(--primary); box-shadow: 0 4px 20px rgba(26,86,219,.15);
  transform: translateY(-2px); color: var(--text);
}
.country-card.featured-card-mini { border-color: var(--accent); border-width: 2px; }
.country-card .flag { font-size: 2rem; }
.country-info { flex: 1; }
.country-info strong { display: block; font-weight: 700; font-size: .98rem; }
.country-info span { font-size: .82rem; color: var(--text-muted); }
.country-card .arrow { color: var(--primary); font-weight: 700; font-size: 1.1rem; }

/* ===== TIPS ===== */
.tips-section { background: var(--bg); }
.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.tip-card {
  background: var(--white); padding: 28px 24px;
  border-radius: var(--radius); box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
}
.tip-num { font-size: 2.5rem; font-weight: 800; color: var(--border); line-height: 1; }
.tip-card h3 { font-size: 1rem; font-weight: 700; margin: 8px 0 8px; color: var(--primary); }
.tip-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }

/* ===== SITE FOOTER ===== */
.site-footer { background: #111827; color: #d1d5db; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding: 56px 0 40px;
}
.footer-brand .logo-icon { font-size: 2rem; }
.footer-brand strong { display: block; color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.footer-brand p { font-size: .88rem; line-height: 1.6; }
.footer-links h4 { color: #fff; font-size: .9rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .05em; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #9ca3af; font-size: .9rem; transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #374151; padding: 20px 24px;
  text-align: center; font-size: .82rem; color: #6b7280;
  max-width: 1160px; margin: 0 auto;
}

/* ===== COUNTRY PAGE ===== */
.country-hero {
  padding: 60px 0;
  color: #fff;
  position: relative; overflow: hidden;
}
.country-hero-spain { background: linear-gradient(135deg, #c60b1e 0%, #8b0000 60%, #c8a000 100%); }
.country-hero-france { background: linear-gradient(135deg, #002395 0%, #1a3a8f 60%, #9b1a24 100%); }
.country-hero-germany { background: linear-gradient(135deg, #1a1a1a 0%, #444 40%, #b30000 70%, #c8a000 100%); }
.country-hero-italy { background: linear-gradient(135deg, #007235 0%, #3a8a5a 40%, #9b1a24 100%); }
.country-hero-portugal { background: linear-gradient(135deg, #003300 0%, #006600 40%, #cc0000 100%); }
.country-hero-netherlands { background: linear-gradient(135deg, #8b0000 0%, #cc0000 40%, #1a2e80 100%); }
.country-hero-greece { background: linear-gradient(135deg, #0a4a8f 0%, #1565c0 60%, #1a6b9f 100%); }
.country-hero-austria { background: linear-gradient(135deg, #b30000 0%, #cc0000 50%, #b30000 100%); }
.country-hero-switzerland { background: linear-gradient(135deg, #cc0000 0%, #990000 100%); }
.country-hero-poland { background: linear-gradient(135deg, #dc143c 0%, #aa1030 60%, #f5f5f5 100%); }
.country-hero-schengen { background: linear-gradient(135deg, #1a56db 0%, #0d3b8e 60%, #1a6bdb 100%); }

.country-hero-inner {
  display: flex; align-items: center; gap: 40px;
}
.country-hero-text { flex: 1; }
.country-hero-text h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 10px; }
.country-hero-text p { font-size: 1.05rem; opacity: .9; max-width: 520px; margin-bottom: 20px; }
.hero-meta { display: flex; gap: 12px; flex-wrap: wrap; }
.meta-pill {
  background: rgba(255,255,255,.2); padding: 6px 16px;
  border-radius: 999px; font-size: .85rem; font-weight: 600;
  backdrop-filter: blur(4px);
}
.country-hero-flag { font-size: 8rem; filter: drop-shadow(0 8px 24px rgba(0,0,0,.4)); }

/* BREADCRUMB */
.breadcrumb { padding: 14px 0; font-size: .85rem; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }

/* COUNTRY CONTENT */
.country-content { padding: 56px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.main-content h2 { font-size: 1.5rem; font-weight: 800; margin: 36px 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--border); }
.main-content h2:first-child { margin-top: 0; }
.main-content p { color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }

/* VISA TYPE CARDS */
.visa-types { display: flex; flex-direction: column; gap: 16px; margin-bottom: 8px; }
.visa-type-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.visa-type-header {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; background: var(--bg); cursor: pointer;
  user-select: none; transition: background .15s;
}
.visa-type-header:hover { background: #e8f0fe; }
.visa-type-icon { font-size: 1.6rem; }
.visa-type-title { flex: 1; }
.visa-type-title strong { display: block; font-size: 1rem; font-weight: 700; }
.visa-type-title span { font-size: .82rem; color: var(--text-muted); }
.visa-toggle { color: var(--primary); font-weight: 700; font-size: 1.2rem; transition: transform .2s; }
.visa-type-body { padding: 20px; border-top: 1px solid var(--border); display: none; }
.visa-type-body.open { display: block; }
.visa-type-body p { margin-bottom: 10px; font-size: .92rem; }
.req-list li { padding: 6px 0; font-size: .9rem; color: var(--text); border-bottom: 1px solid var(--border); }
.req-list li:last-child { border-bottom: none; }
.req-list li::before { content: "📋 "; }

/* SIDEBAR */
.sidebar { position: sticky; top: 84px; }
.sidebar-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
  margin-bottom: 20px;
}
.sidebar-card-header {
  padding: 14px 20px; background: var(--primary);
  color: #fff; font-weight: 700; font-size: .9rem;
}
.sidebar-card-body { padding: 16px 20px; }
.info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .88rem;
}
.info-row:last-child { border-bottom: none; }
.info-row .label { color: var(--text-muted); }
.info-row .value { font-weight: 600; color: var(--text); }

/* QUICK FACTS TABLE */
.facts-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.facts-table tr:nth-child(even) td { background: var(--bg); }
.facts-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); }
.facts-table td:first-child { color: var(--text-muted); font-weight: 500; width: 40%; }
.facts-table td:last-child { font-weight: 600; }

/* PROCESS STEPS */
.process-steps { counter-reset: step; display: flex; flex-direction: column; gap: 16px; }
.process-step {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: var(--bg); border-radius: 10px;
  border-left: 4px solid var(--primary);
}
.step-num {
  min-width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem;
}
.step-content h4 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.step-content p { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* WARNING BOX */
.warning-box {
  background: #fffbeb; border: 1px solid #fcd34d;
  border-left: 4px solid var(--accent); border-radius: 10px;
  padding: 16px 20px; margin: 20px 0;
}
.warning-box p { font-size: .9rem; color: #78350f; margin: 0; }
.warning-box strong { color: #92400e; }

.info-box {
  background: #eff6ff; border: 1px solid #93c5fd;
  border-left: 4px solid var(--primary); border-radius: 10px;
  padding: 16px 20px; margin: 20px 0;
}
.info-box p { font-size: .9rem; color: #1e40af; margin: 0; }

/* COUNTRY NAV */
.country-nav-strip {
  background: var(--bg); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 14px 0; overflow-x: auto;
}
.country-nav-strip ul {
  display: flex; gap: 8px; min-width: max-content; padding: 0 24px;
  max-width: 1160px; margin: 0 auto;
}
.country-nav-strip a {
  padding: 8px 16px; border-radius: 8px; font-size: .85rem;
  font-weight: 600; color: var(--text-muted);
  transition: all .15s; white-space: nowrap;
  border: 1px solid transparent;
}
.country-nav-strip a:hover, .country-nav-strip a.active {
  background: var(--white); color: var(--primary);
  border-color: var(--primary);
}

/* SCHENGEN MEMBERS GRID */
.members-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.member-card {
  display: flex; align-items: center; gap: 10px;
  padding: 14px; border: 1px solid var(--border);
  border-radius: 10px; background: var(--white);
  font-size: .88rem; font-weight: 600; color: var(--text);
  box-shadow: var(--shadow); transition: all .15s;
}
.member-card:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }
.member-card span:first-child { font-size: 1.5rem; }

/* FAQ PAGE */
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow);
}
.faq-question {
  padding: 18px 24px; background: var(--white);
  font-weight: 600; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  transition: background .15s;
}
.faq-question:hover { background: var(--bg); }
.faq-toggle { color: var(--primary); font-size: 1.2rem; transition: transform .2s; }
.faq-answer {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  background: var(--bg); font-size: .92rem; color: var(--text-muted); line-height: 1.75;
}
.faq-answer.open { max-height: 400px; padding: 16px 24px; }

/* ===== SHARED FOOTER ===== */
.site-footer { background: #0f172a; color: #94a3b8; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.4fr;
  gap: 48px;
  padding: 64px 0 48px;
}

.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.3rem; font-weight: 800; color: #f1f5f9;
  margin-bottom: 14px; text-decoration: none;
}
.footer-logo:hover { color: #f1f5f9; }
.footer-logo strong { color: #3b82f6; }
.footer-logo .logo-icon { font-size: 1.6rem; }

.footer-tagline {
  font-size: .88rem; line-height: 1.7; color: #64748b; margin-bottom: 20px;
}

.footer-partner { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-partner-label { font-size: .75rem; color: #475569; text-transform: uppercase; letter-spacing: .06em; }
.footer-agrin-link {
  font-size: 1rem; font-weight: 800; color: #3b82f6; letter-spacing: -.02em;
}
.footer-agrin-link span { color: #f59e0b; }
.footer-agrin-link:hover { color: #60a5fa; }

.footer-col h4 {
  color: #f1f5f9; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  color: #64748b; font-size: .88rem; transition: color .15s;
}
.footer-col ul li a:hover { color: #f1f5f9; }

.footer-agrin-card {
  background: #1e293b; border: 1px solid #334155;
  border-radius: 10px; padding: 18px;
  margin-bottom: 4px;
}
.footer-agrin-brand {
  font-size: 1.15rem; font-weight: 800; color: #3b82f6;
  margin-bottom: 8px; letter-spacing: -.02em;
}
.footer-agrin-brand span { color: #f59e0b; }
.footer-agrin-card p {
  font-size: .82rem; line-height: 1.6; color: #64748b; margin-bottom: 12px;
}
.footer-agrin-cta {
  display: block; text-align: center;
  background: #1d4ed8; color: #fff;
  font-size: .82rem; font-weight: 700;
  padding: 9px 14px; border-radius: 7px;
  transition: background .2s;
}
.footer-agrin-cta:hover { background: #2563eb; color: #fff; }

.footer-disclaimer {
  border-top: 1px solid #1e293b;
  padding: 24px 0;
  background: #0a0f1a;
}
.footer-disclaimer p {
  font-size: .8rem; line-height: 1.75; color: #475569; margin-bottom: 10px;
}
.footer-disclaimer p:last-child { margin-bottom: 0; }
.footer-disclaimer strong { color: #64748b; }
.footer-disclaimer a { color: #3b82f6; }
.footer-disclaimer a:hover { color: #60a5fa; }
.footer-copy {
  font-size: .78rem !important; color: #334155 !important;
  padding-top: 12px; border-top: 1px solid #1e293b;
}

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 0 32px; }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 24px; }
}

/* ===== AGRIN.UK CARD ===== */
.agrin-card {
  border: 2px solid #f59e0b !important;
  box-shadow: 0 4px 24px rgba(245,158,11,.2) !important;
  overflow: hidden;
}
.agrin-card-inner {
  padding: 20px;
  background: linear-gradient(160deg, #fffbeb 0%, #fff 60%);
}
.agrin-logo-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.agrin-logo {
  font-size: 1.4rem; font-weight: 800; color: #1a56db; letter-spacing: -.02em;
}
.agrin-logo span { color: #f59e0b; }
.agrin-badge {
  background: #f59e0b; color: #fff;
  font-size: .7rem; font-weight: 700; padding: 3px 10px;
  border-radius: 999px; text-transform: uppercase; letter-spacing: .05em;
}
.agrin-title {
  font-size: 1rem; font-weight: 800; color: var(--text);
  margin-bottom: 8px; line-height: 1.3;
}
.agrin-desc {
  font-size: .85rem; color: var(--text-muted); line-height: 1.6;
  margin-bottom: 14px;
}
.agrin-services {
  list-style: none; margin-bottom: 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.agrin-services li {
  font-size: .82rem; color: var(--text); font-weight: 500;
}
.agrin-btn {
  display: block; text-align: center;
  background: linear-gradient(135deg, #1a56db, #0d3b8e);
  color: #fff; font-weight: 700; font-size: .9rem;
  padding: 12px 16px; border-radius: 8px;
  transition: opacity .2s; margin-bottom: 10px;
}
.agrin-btn:hover { opacity: .88; color: #fff; }
.agrin-note {
  font-size: .75rem; color: var(--text-muted);
  text-align: center; margin: 0;
}

/* ===== AGRIN INLINE BANNER ===== */
.agrin-banner {
  display: flex; align-items: center; gap: 20px;
  background: linear-gradient(135deg, #1a3a8f 0%, #1a56db 100%);
  border-radius: var(--radius); padding: 24px 28px;
  margin: 32px 0; color: #fff;
  box-shadow: 0 4px 20px rgba(26,86,219,.25);
}
.agrin-banner-icon { font-size: 2.8rem; flex-shrink: 0; }
.agrin-banner-text { flex: 1; }
.agrin-banner-text strong {
  display: block; font-size: 1.05rem; font-weight: 800; margin-bottom: 4px;
}
.agrin-banner-text p {
  font-size: .88rem; opacity: .9; margin: 0; color: #fff;
}
.agrin-banner-btn {
  flex-shrink: 0;
  background: #f59e0b; color: #fff;
  font-weight: 700; font-size: .88rem;
  padding: 10px 20px; border-radius: 8px;
  white-space: nowrap; transition: background .2s;
}
.agrin-banner-btn:hover { background: #d97706; color: #fff; }
@media (max-width: 640px) {
  .agrin-banner { flex-direction: column; text-align: center; }
  .agrin-banner-icon { display: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .featured-card { grid-template-columns: 1fr; }
  .country-illustration { display: none; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .country-hero-flag { font-size: 5rem; }
}

@media (max-width: 640px) {
  .main-nav { display: none; }
  .hamburger { display: block; }
  .main-nav.open {
    display: flex; flex-direction: column; position: absolute;
    top: 64px; left: 0; right: 0; background: var(--white);
    border-bottom: 1px solid var(--border); padding: 16px;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open > ul { flex-direction: column; }
  .dropdown-menu { position: static; box-shadow: none; border: none; }
  .section { padding: 48px 0; }
  .section-title { font-size: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; padding: 32px 0 24px; }
  .hero { padding: 56px 0 72px; }
  .country-hero-inner { flex-direction: column; text-align: center; }
}
