/* Base styles */
:root {
  --brand: #2F80ED;
  --sun: #FFD97D;
  --coral: #FF9E80;
  --text: #1F2A37;
  --muted: #4B5563;
  --bg: #FFFFFF;
  --bg-alt: #F9FAFB;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
body {
  font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
h1, h2, h3 { font-family: 'Montserrat', sans-serif; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 .5rem; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin: 0 0 .75rem; }
h3 { font-size: 1.25rem; margin: 0 0 .5rem; }
p { margin: 0 0 1rem; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1100px, 92%); margin: 0 auto; }
.section { padding: 64px 0; }
.section.alt { background: var(--bg-alt); }

.skip-link {
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus { left: 12px; top: 12px; width:auto; height:auto; padding:8px 12px; background:#fff; box-shadow: var(--shadow); border-radius: 8px;}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9); backdrop-filter: blur(10px); border-bottom: 1px solid #eef2f7;
}
.nav { display:flex; align-items:center; justify-content:space-between; min-height:64px; gap:12px; }
.brand { display:flex; align-items:center; gap:10px; font-weight:700; color: var(--text); }
.brand span { letter-spacing:.3px; }
.menu { list-style:none; display:flex; gap:18px; padding:0; margin:0; align-items:center; }
.menu a { padding: 10px 6px; border-radius: 8px; }
.menu a:hover { background: var(--bg-alt); text-decoration:none; }
.nav-toggle { display:none; }

.btn {
  display:inline-block; padding: 12px 18px; border-radius: 999px; background: var(--brand); color:#fff; font-weight:600; border: 2px solid var(--brand); transition: transform .05s ease;
}
.btn:hover { transform: translateY(-1px); text-decoration:none; }
.btn-outline { background: transparent; color: var(--brand); border: 2px solid var(--brand); }
.btn-small { padding: 8px 14px; font-size: .95rem; }

.hero {
  background: linear-gradient(180deg, rgba(255, 217, 125, .35), transparent 55%);
  padding: 48px 0 24px;
}
.hero-inner { display:grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items:center; }
.hero-copy p { font-size: 1.05rem; }
.trust-badges { display:flex; gap:16px; padding:0; margin: 16px 0 0; list-style:none; flex-wrap:wrap; }
.trust-badges li { background:#fff; border:1px solid #eef2f7; border-radius:999px; padding:8px 12px; font-size:.95rem; box-shadow: var(--shadow); }

.hero-art { position: relative; min-height: 280px; }
.hero-art .sun {
  width: 220px; height: 220px; background: var(--sun); border-radius: 50%;
  position:absolute; right: 10%; top: 15%; box-shadow: 0 0 80px rgba(255,217,125,.6);
}
.hero-art .hills {
  position:absolute; bottom:0; left:0; right:0; height: 160px;
  background: radial-gradient(120% 80% at 10% 100%, #FF9E80 0%, rgba(255,158,128,.6) 60%, transparent 61%) bottom left/60% 100% no-repeat,
              radial-gradient(120% 80% at 90% 100%, #2F80ED 0%, rgba(47,128,237,.6) 60%, transparent 61%) bottom right/60% 100% no-repeat;
  filter: blur(2px);
}

/* Layout helpers */
.two-col { display:grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items:start; }
.grid-3 { display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.card { background:#fff; border:1px solid #eef2f7; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.highlight { background: linear-gradient(180deg, #fff, #fff5e6); border-color:#ffe9bf; }

.table-wrap { overflow-x:auto; }
table { width:100%; border-collapse: collapse; }
th, td { text-align:left; padding: 12px 14px; }
thead th { background: var(--bg-alt); }
tbody tr:nth-child(even) td { background: #fcfdff; }
tbody tr td:last-child { font-weight:600; }

/* Forms */
form .form-grid { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
label { display:flex; flex-direction:column; gap:6px; font-weight:600; }
input, select, textarea {
  padding: 12px 12px; border-radius: 10px; border:1px solid #d9e1ec; background:#fff;
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--brand); border-color: var(--brand); }
label.full { grid-column: 1 / -1; }
.form-actions { display:flex; align-items:center; gap: 16px; margin-top: 8px; }

.contact-list { list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }

/* Footer */
.site-footer { background: #0B1220; color:#c8d1e4; padding: 28px 0; }
.footer-inner { display:flex; align-items:center; justify-content:space-between; gap: 16px; flex-wrap:wrap; }
.site-footer a { color:#c8d1e4; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner, .two-col { grid-template-columns: 1fr; }
  .hero-art { order:-1; height: 220px; }
}
@media (max-width: 720px) {
  .grid-3 { grid-template-columns: 1fr; }
  .menu { display:none; position:absolute; right: 16px; top: 60px; background:#fff; border:1px solid #eef2f7; border-radius: 12px; padding: 10px; flex-direction:column; gap:8px; box-shadow: var(--shadow); }
  .nav-toggle { display:inline-flex; padding:8px 12px; border-radius: 8px; border:1px solid #e5eaf3; background:#fff; }
  nav[aria-label="Primary navigation"][data-open="true"] .menu { display:flex; }
}
