:root {
  --navy-dark: #15233b;
  --navy: #1f3a5f;
  --navy-light: #5b7aa6;
  --gold: #c9a14a;
  --cream: #f7f5ef;
  --text: #2b2b2b;
  --text-light: #5a5a5a;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background: #fff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--navy-dark);
  font-weight: 600;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p { color: var(--text-light); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #ececec;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

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

.logo img {
  height: 48px;
  display: block;
}

.logo-tagline {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  text-decoration: none;
  color: var(--navy-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a:hover { color: var(--navy); }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  padding: 14px 32px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 10px 28px;
}
.btn-secondary:hover {
  background: var(--navy);
  color: #fff;
}

.btn-small {
  padding: 8px 20px;
  background: var(--navy);
  color: #fff !important;
  font-size: 0.9rem;
}
.btn-small:hover { background: var(--navy-dark); color: #fff; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy) 70%);
  color: #fff;
  text-align: center;
  padding: 110px 24px;
}

.hero h1 {
  color: #fff;
  font-size: 2.6rem;
  max-width: 800px;
  margin: 0 auto 1.2rem;
}

.hero-sub {
  color: #dbe4f0;
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 2.2rem;
}

/* About */
.about {
  padding: 80px 24px;
  background: var(--cream);
  text-align: center;
}

.about .container {
  max-width: 820px;
}

.about p {
  margin-bottom: 1rem;
}

/* Personal Service */
.personal {
  padding: 80px 24px;
}

.personal-box {
  max-width: 760px;
  margin: 0 auto;
  border-left: 4px solid var(--gold);
  padding-left: 32px;
}

.personal-box h2 {
  text-align: left;
}

.personal-box p {
  margin-bottom: 1rem;
}

/* Features */
.features {
  padding: 80px 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #ececec;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.feature-icon {
  height: 64px;
  width: auto;
  margin: 0 auto 1rem;
  display: block;
  object-fit: contain;
}

.feature-icon-text {
  height: 64px;
  width: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
}

.feature-card p {
  font-size: 0.95rem;
}

/* Highlight */
.highlight {
  padding: 70px 24px;
  background: var(--navy-dark);
  color: #fff;
  text-align: center;
}

.highlight h2 {
  color: #fff;
}

.highlight .container {
  max-width: 760px;
}

.highlight p {
  color: #dbe4f0;
}

.highlight p + p {
  margin-top: 1rem;
}

.highlight strong {
  color: var(--gold);
}

/* Examples */
.examples {
  padding: 80px 24px;
  background: var(--cream);
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.example-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ececec;
  text-align: center;
  padding-bottom: 28px;
  display: flex;
  flex-direction: column;
}

.example-card img {
  width: 100%;
  display: block;
}

.example-card h3, .example-card p {
  padding: 0 24px;
}

.example-card h3 {
  margin-top: 20px;
}

.example-card p {
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.example-card .btn {
  margin: 0 24px;
  align-self: center;
}

.example-card-text {
  justify-content: center;
}

/* Pricing */
.pricing {
  padding: 80px 24px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
}

.pricing-card {
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(201,161,74,0.18);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 20px;
}

.price {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0.5rem 0 0;
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.pricing-tagline {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.pricing-card ul {
  text-align: left;
  list-style: none;
  margin-bottom: 1.6rem;
  flex-grow: 1;
}

.pricing-card ul > li {
  margin-bottom: 1rem;
}

.pricing-card ul > li > strong {
  color: var(--navy-dark);
}

.pricing-card ul ul {
  list-style: disc;
  margin: 0.4rem 0 0 1.2rem;
  font-size: 0.92rem;
  color: var(--text-light);
}

.pricing-card ul ul li {
  margin-bottom: 0.25rem;
}

.pricing-card .btn {
  align-self: center;
}

.pricing-note {
  max-width: 800px;
  margin: 3rem auto 0;
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #c7d3e3;
  text-align: center;
  padding: 28px 24px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 700px) {
  .logo-tagline { display: none; }
  .main-nav { gap: 14px; }
  .main-nav a { font-size: 0.85rem; }
  .hero { padding: 80px 20px; }
  .hero h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
