/* ================================================================
   SUANOVA New Design - Global Public Styles
   ================================================================ */

/* CSS Variables */
:root {
  --navy: #002855;
  --teal: #64ccc9;
  --teal-light: #62cbc9;
  --cadet-blue: #a2abbd;
  --light-card: #c6efee;
  --border-light: #f6f6f6;
  --border-mid: #e9e9e9;
  --dark-text: #0e1625;
  --ink: #10131a;
  --white: #ffffff;
  --blue-haze: #d0cee2;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Roboto', 'Noto Sans SC', 'Source Han Sans SC', 'Source Han Sans CN', 'Microsoft YaHei', 'PingFang SC', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--teal);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
  text-decoration: none;
}

.btn-primary img,
.btn-primary svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

.btn-navy img {
  width: 16px;
  height: 16px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--navy);
  padding: 8px 24px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  border: 1px solid var(--navy);
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.btn-outline img {
  width: 24px;
  height: 24px;
}
