html, body {
  margin: 0;
  padding: 0;
  background: linear-gradient(160deg, #E3F5FA 0%, #FBF3E0 100%) fixed #EDF6FA;
}

* { box-sizing: border-box; }

a { color: #053F5C; }
a:hover { color: #2E6E8C; }

.page {
  min-height: 100vh;
  background: linear-gradient(160deg, #E3F5FA 0%, #FBF3E0 100%);
  color: #10344A;
  font-family: 'Public Sans', system-ui, sans-serif;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  border-bottom: 1px solid #C9E5EF;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #10344A;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #F7AD19;
  font-weight: 600;
  margin-top: 3px;
}

.header-tagline {
  font-size: 13px;
  color: #5E7C8C;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F7AD19;
  display: inline-block;
}

/* Hero */
.hero {
  padding: 84px 6vw 64px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  margin: 0 0 18px;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #053F5C;
  font-weight: 600;
}

.hero-title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.hero-sub {
  margin: 26px auto 0;
  font-size: 18px;
  line-height: 1.65;
  color: #3F5A6B;
  max-width: 640px;
  text-wrap: pretty;
}

.hero-note {
  margin: 22px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #5E7C8C;
}

/* Cards */
.tools-section {
  padding: 0 6vw 90px;
  display: flex;
  justify-content: center;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
  max-width: 1280px;
  width: 100%;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid #BCE3EF;
  border-radius: 14px;
  padding: 28px 26px 24px;
  box-shadow: 0 0 0 1px rgba(66,158,189,0.10), 0 0 22px rgba(66,158,189,0.25);
  transition: box-shadow .25s, transform .25s;
}

.card:hover {
  box-shadow: 0 0 0 1px rgba(66,158,189,0.22), 0 0 36px rgba(66,158,189,0.45);
  transform: translateY(-2px);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #E1F3F9;
  color: #053F5C;
}

.card-title {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.card-desc {
  margin: 0;
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.6;
  color: #3F5A6B;
  flex: 1;
  text-wrap: pretty;
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.btn-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  background: #F7AD19;
  color: #053F5C;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 9px;
  padding: 0 16px;
  font-family: inherit;
}

.btn-primary:hover {
  background: #FFBD45;
  color: #053F5C;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  min-width: 118px;
  background: transparent;
  color: #053F5C;
  border: 1.5px solid #A9D4E4;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: inherit;
  padding: 0 14px;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: #F7AD19;
  background: #E1F3F9;
}

/* Footer */
.footer {
  border-top: 1px solid #C9E5EF;
  padding: 34px 6vw 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 15px;
  color: #10344A;
}

.footer-text {
  font-size: 13px;
  color: #5E7C8C;
}
