:root {
  --font-body: "Space Grotesk", "Segoe UI", sans-serif;
  --font-head: "Sora", "Trebuchet MS", sans-serif;
  --bg: #fff9f1;
  --bg-soft: #fff3df;
  --surface: #ffffff;
  --text: #1a2233;
  --muted: #5f6b85;
  --brand: #f25f3a;
  --brand-2: #ff9f1a;
  --brand-dark: #ca4727;
  --line: #e9dfd0;
  --ok: #1f8a70;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 8px 22px rgba(26, 34, 51, 0.08);
  --shadow-lg: 0 18px 55px rgba(26, 34, 51, 0.14);
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 12% -5%, #ffe4b7 0%, transparent 35%),
    radial-gradient(circle at 88% 20%, #ffd6cc 0%, transparent 35%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  color: var(--text);
  line-height: 1.2;
  margin-top: 0;
}

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

.section {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.section-title h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  margin-bottom: 10px;
}

.section-title p {
  color: var(--muted);
  margin: 0;
}

.header {
  z-index: 1000;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.header-scrolled {
  background: rgba(255, 249, 241, 0.88);
  box-shadow: var(--shadow-sm);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 700;
}

.logo-mark {
  width: 150px;
  height: auto;
  object-fit: contain;
  display: block;
}

.navmenu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.navmenu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: all var(--transition);
}

.navmenu a:hover,
.navmenu a.active {
  color: var(--text);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.mobile-nav-toggle {
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text);
}

.cta-btn,
.btn-primary-solid,
.btn-secondary-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: all var(--transition);
}

.cta-btn,
.btn-primary-solid {
  height: 44px;
  padding: 0 20px;
  color: #fff;
  border: none;
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
  box-shadow: 0 8px 24px rgba(242, 95, 58, 0.32);
}

.cta-btn:hover,
.btn-primary-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(242, 95, 58, 0.4);
  color: #fff;
}

.btn-secondary-ghost {
  height: 44px;
  padding: 0 20px;
  color: var(--text);
  border: 1px solid var(--line);
  background: #fff;
}

.btn-secondary-ghost:hover {
  border-color: #d7c7ad;
  box-shadow: var(--shadow-sm);
}

.hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 130px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 249, 241, 0.9) 15%, rgba(255, 249, 241, 0.4) 58%, rgba(242, 95, 58, 0.22) 100%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-weight: 700;
  color: #7a5d2d;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--brand);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 16px;
}

.hero p {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: #273248;
  max-width: 680px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.7) 100%);
}

.about-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.about-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.about-grid h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.about-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.services .service-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card i {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  font-size: 1.45rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.2rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #f0c5b7;
  box-shadow: var(--shadow-lg);
}

.call-to-action {
  position: relative;
}

.call-to-action .container {
  background: linear-gradient(130deg, #1a2233, #2a3754);
  color: #f4f6ff;
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-lg);
}

.call-to-action h2 {
  color: #ffffff;
  margin-bottom: 6px;
}

.call-to-action p {
  margin: 0;
  color: #d1daf0;
}

.insights-hub {
  background: var(--bg-soft);
}

.insights-filters {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 26px;
  padding: 0;
}

.insights-filters li {
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.insights-filters li:hover,
.insights-filters .filter-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
}

.insight-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.insight-item img {
  width: 100%;
  transition: transform 0.45s ease;
}

.insight-item:hover img {
  transform: scale(1.08);
}

.insight-info {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 14px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(180deg, rgba(26, 34, 51, 0.08), rgba(26, 34, 51, 0.8));
  transform: translateY(10px);
  opacity: 0;
  transition: all var(--transition);
}

.insight-item:hover .insight-info {
  transform: translateY(0);
  opacity: 1;
}

.insight-info h4 {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 3px;
}

.insight-info p {
  margin: 0 0 10px;
  color: #e5ebff;
}

.preview-link,
.details-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact .info-item {
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}

.contact .info-item i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
}

.contact .info-item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact .info-item p {
  margin: 0;
  color: var(--muted);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.form-control {
  border: 1px solid #ded5c8;
  border-radius: 12px;
  min-height: 46px;
  padding: 12px 14px;
  font-size: 0.96rem;
}

.form-control:focus {
  border-color: #f39f8a;
  box-shadow: 0 0 0 0.2rem rgba(242, 95, 58, 0.15);
}

textarea.form-control {
  min-height: 140px;
}

.footer {
  padding: 44px 0;
  background: #101827;
  color: #dbe2f2;
}

.footer .sitename {
  color: #fff;
  margin-bottom: 8px;
}

.footer p {
  max-width: 640px;
  margin: 0 auto 10px;
}

.copyright {
  color: #96a7ca;
}

.scroll-top {
  position: fixed;
  right: 16px;
  bottom: -56px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  z-index: 999;
  color: #fff;
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
  box-shadow: var(--shadow-sm);
  transition: bottom var(--transition), transform var(--transition);
}

.scroll-top.active {
  bottom: 16px;
}

.scroll-top:hover {
  transform: translateY(-2px);
}

#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
}

.notification-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 11, 20, 0.48);
  z-index: 10001;
}

.notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: min(92vw, 420px);
  padding: 24px;
  text-align: center;
  border-radius: 18px;
  color: #f7f9ff;
  background: linear-gradient(135deg, #1f8a70, #2b6cb0);
  box-shadow: var(--shadow-lg);
  z-index: 10002;
}

.notification h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.notification p {
  margin: 0;
  color: #e9f0ff;
}

.notification-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .logo-mark {
    width: 132px;
  }

  .header {
    background: rgba(255, 249, 241, 0.9);
  }

  .navmenu {
    position: fixed;
    inset: 66px 12px auto 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 10px;
    display: none;
  }

  .navmenu.mobile-nav-active {
    display: block;
  }

  .navmenu ul {
    flex-direction: column;
    align-items: stretch;
  }

  .navmenu a {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 84px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .logo-mark {
    width: 116px;
  }

  .section {
    padding: 72px 0;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions a {
    width: 100%;
  }

  .call-to-action .container,
  .contact-form {
    padding: 20px;
  }
}
