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

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1a2e44;
  min-height: 100vh;
}

/* ── NAVBAR ── */
.navbar {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-reno {
  font-size: 15px;
  font-weight: 800;
  color: #1a3a5c;
  letter-spacing: 0.01em;
}

.logo-vision {
  font-size: 11px;
  font-weight: 600;
  color: #4a9fd4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  color: #1a2e44;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #3b82c4;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.btn-outline {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #1a3a5c;
  border: 1.5px solid #1a3a5c;
  border-radius: 50px;
  padding: 8px 22px;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: #1a3a5c;
  color: #fff;
}

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

.social-icons a {
  color: #1a3a5c;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.social-icons a:hover {
  color: #3b82c4;
}

/* ── HERO ── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 40px;
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: calc(100vh - 80px);
}

.hero-content {
  flex: 1;
  max-width: 560px;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  color: #1a2e44;
  line-height: 1.12;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 15.5px;
  color: #4a6070;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
}

.btn-primary {
  text-decoration: none;
  background: #4a9fd4;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: #3589bc;
  transform: translateY(-1px);
}

.btn-text {
  text-decoration: none;
  color: #3b82c4;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.btn-text:hover {
  color: #2567a0;
}

/* ── HERO VISUAL ── */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-slider {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

/* ── BEFORE & AFTER SECTION ── */
.ba-section {
  background: #fff;
  padding: 40px 0 100px;
}

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

.ba-heading {
  font-size: 32px;
  font-weight: 800;
  color: #1a2e44;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  border-radius: 12px;
  overflow: hidden;
}

/* ── INDIVIDUAL SLIDER ── */
.ba-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: col-resize;
  background: #ccc;
  user-select: none;
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-after-wrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 50%);
  will-change: clip-path;
}

.ba-after-wrap .ba-img {
  position: absolute;
}

/* ── DIVIDER LINE & HANDLE ── */
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,0.85);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}

.ba-handle {
  pointer-events: all;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.22);
  cursor: col-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 4px;
  flex-shrink: 0;
  transition: transform 0.15s, box-shadow 0.15s;
}

.ba-handle:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 18px rgba(0,0,0,0.28);
}

.ba-handle svg {
  width: 14px;
  height: 14px;
  color: #1a2e44;
  flex-shrink: 0;
}

/* ── BEFORE & AFTER BOTTOM BUTTONS ── */
.ba-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* ── WHY RENO VISION SECTION ── */
.why-section {
  padding: 60px 0 80px;
  background: #fff;
}

.why-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  border: 1.5px solid #d8e4ef;
  border-radius: 14px;
}

.why-heading {
  font-size: 28px;
  font-weight: 800;
  color: #1a2e44;
  padding: 36px 0 24px;
  letter-spacing: -0.02em;
}

.why-body {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 36px;
}

.why-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-text {
  flex: 1;
  font-size: 15px;
  color: #3b6a9a;
  line-height: 1.75;
}

.why-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.why-divider {
  border: none;
  border-top: 1px solid #d8e4ef;
  margin: 0 0 8px;
}

.why-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 32px 0 40px;
  flex-wrap: wrap;
}

.why-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%) opacity(0.85);
  transition: filter 0.2s, transform 0.2s;
}

.why-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.btn-center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ── PRICING SECTION ── */
.pricing-section {
  background: #f8fafc;
  padding: 80px 0 100px;
}

.pricing-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.pricing-heading {
  font-size: 32px;
  font-weight: 800;
  color: #1a2e44;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.pricing-sub {
  font-size: 15px;
  color: #4a6070;
  line-height: 1.75;
  margin-bottom: 48px;
}

.pricing-card-wrap {
  display: flex;
  justify-content: center;
}

.pricing-card {
  width: 100%;
  max-width: 380px;
  border: 1.5px solid #d0dde8;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.pricing-card-inner {
  position: relative;
  padding: 36px 32px 32px;
  text-align: left;
  overflow: hidden;
}

.pricing-blob {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: #ddeef8;
  border-radius: 50%;
  z-index: 0;
}

.pricing-plan {
  position: relative;
  font-size: 17px;
  font-weight: 700;
  color: #1a2e44;
  margin-bottom: 16px;
  z-index: 1;
}

.pricing-price {
  position: relative;
  display: flex;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 6px;
  z-index: 1;
}

.pricing-dollar {
  font-size: 22px;
  font-weight: 700;
  color: #1a2e44;
  margin-top: 8px;
}

.pricing-amount {
  font-size: 72px;
  font-weight: 800;
  color: #1a2e44;
  letter-spacing: -0.03em;
}

.pricing-per {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: #4a9fd4;
  margin-bottom: 28px;
  z-index: 1;
}

.pricing-features {
  position: relative;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  z-index: 1;
}

.pricing-features li {
  font-size: 14.5px;
  color: #2a3f55;
  line-height: 1.55;
  padding-left: 26px;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 8px;
  border-left: 2px solid #4a9fd4;
  border-bottom: 2px solid #4a9fd4;
  transform: rotate(-45deg);
}

.pricing-cta {
  position: relative;
  z-index: 1;
  display: inline-block;
}

/* ── HERO SLIDER LABEL ── */
.hero-visual-inner {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-slider-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4a9fd4;
}

/* override hero-slider sizing now it's inside hero-visual-inner */
.hero-visual-inner .hero-slider {
  max-width: 100%;
}

/* ── CONTACT SECTION ── */
.contact-section {
  background: #f8fafc;
  padding: 80px 0 100px;
}

.contact-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px;
}

.contact-heading {
  font-size: 32px;
  font-weight: 800;
  color: #1a2e44;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.contact-desc {
  font-size: 15px;
  color: #4a6070;
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 13.5px;
  font-weight: 600;
  color: #1a2e44;
}

.required {
  color: #e05555;
}

.form-group input,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: #1a2e44;
  background: #fff;
  border: 1.5px solid #c8d8e8;
  border-radius: 10px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9fb4c4;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #4a9fd4;
  box-shadow: 0 0 0 3px rgba(74,159,212,0.12);
}

/* File drop zone */
.file-drop {
  display: block;
  cursor: pointer;
  border: 2px dashed #b0cfe0;
  border-radius: 12px;
  background: #f0f7fc;
  transition: border-color 0.2s, background 0.2s;
}

.file-drop input[type="file"] {
  display: none;
}

.file-drop:hover,
.file-drop.drag-over {
  border-color: #4a9fd4;
  background: #e3f2fb;
}

.file-drop-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 20px;
  pointer-events: none;
}

.file-drop-text {
  font-size: 14.5px;
  color: #4a6070;
}

.file-link {
  color: #4a9fd4;
  font-weight: 600;
  text-decoration: underline;
}

.file-hint {
  font-size: 12px;
  color: #8aa4b8;
}

.file-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.file-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  background: #fff;
  border: 1px solid #d0e4f0;
  border-radius: 8px;
  padding: 8px 12px;
}

.file-name {
  flex: 1;
  color: #1a2e44;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-size {
  color: #8aa4b8;
  font-size: 12px;
  flex-shrink: 0;
}

.file-remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: #aac0d0;
  transition: color 0.15s;
  padding: 0 2px;
  flex-shrink: 0;
}

.file-remove:hover {
  color: #e05555;
}

.contact-submit {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.contact-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 60px 20px;
  background: #f0f8ff;
  border: 1.5px solid #b8d8ee;
  border-radius: 14px;
}

.form-success h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a2e44;
}

.form-success p {
  font-size: 15px;
  color: #4a6070;
  line-height: 1.6;
}

/* ── MORE PROJECT SAMPLES ── */
.samples-section {
  background: #fff;
  padding: 80px 0 100px;
}

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

.samples-heading {
  font-size: 32px;
  font-weight: 800;
  color: #1a2e44;
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: -0.02em;
}

.sample-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sample-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sample-subheading {
  font-size: 22px;
  font-weight: 700;
  color: #1a2e44;
}

.sample-desc {
  font-size: 15px;
  color: #4a6070;
  line-height: 1.7;
  max-width: 680px;
}

.sample-slider {
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  cursor: col-resize;
}

.sample-divider {
  border: none;
  border-top: 1px solid #e2ecf4;
  margin: 56px 0;
}

/* ── STILL HAVE QUESTIONS ── */
.questions-section {
  background: linear-gradient(135deg, #e8f4fb 0%, #f0f8ff 100%);
  padding: 80px 40px;
  text-align: center;
  border-top: 1px solid #cde4f2;
}

.questions-container {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.questions-heading {
  font-size: 32px;
  font-weight: 800;
  color: #1a2e44;
  letter-spacing: -0.02em;
}

.questions-desc {
  font-size: 15.5px;
  color: #4a6070;
  line-height: 1.75;
}

/* ── FOOTER ── */
.site-footer {
  background: #0f2236;
  padding: 48px 0;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
  margin-right: 16px;
}

.footer-logo-line1 {
  font-size: 13px;
  font-weight: 500;
  color: #7bb8d8;
  letter-spacing: 0.03em;
}

.footer-logo-line2 {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.03em;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.footer-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #a8c8e0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-copy {
  font-size: 13px;
  color: #4e6e84;
  flex-shrink: 0;
}

/* ── NAV ACTIVE STATE ── */
.nav-active {
  color: #4a9fd4 !important;
}

/* ── BLOGS LISTING PAGE ── */
.blog-list-hero {
  background: #f8fafc;
  padding: 70px 0 50px;
  border-bottom: 1px solid #e2ecf4;
}

.blog-list-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-list-heading {
  font-size: 42px;
  font-weight: 800;
  color: #1a2e44;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.blog-list-desc {
  font-size: 16px;
  color: #4a6070;
  line-height: 1.75;
  max-width: 620px;
}

.blog-list-section {
  padding: 60px 0 100px;
  background: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.blog-card {
  border: 1.5px solid #d8e8f4;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.blog-card-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.blog-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4a9fd4;
  background: #e8f4fb;
  padding: 4px 10px;
  border-radius: 20px;
  align-self: flex-start;
}

.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a2e44;
  line-height: 1.4;
}

.blog-card-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.blog-card-title a:hover {
  color: #4a9fd4;
}

.blog-card-meta {
  font-size: 13.5px;
  color: #5a7285;
  line-height: 1.65;
  flex: 1;
}

.blog-read-more {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  color: #4a9fd4;
  transition: color 0.2s;
  align-self: flex-start;
}

.blog-read-more:hover {
  color: #2567a0;
}

/* ── BLOG POST PAGE ── */
.post-main {
  padding: 60px 0 100px;
  background: #fff;
}

.post-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px;
}

.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #8aa4b8;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.post-breadcrumb a {
  text-decoration: none;
  color: #4a9fd4;
  transition: color 0.2s;
}

.post-breadcrumb a:hover {
  color: #2567a0;
}

.post-breadcrumb span {
  color: #b0c8d8;
}

.post-title {
  font-size: 34px;
  font-weight: 800;
  color: #1a2e44;
  line-height: 1.2;
  margin: 16px 0 32px;
  letter-spacing: -0.02em;
}

.post-hero-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 48px;
}

.post-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-body {
  font-size: 16px;
  color: #2a3f55;
  line-height: 1.85;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.post-body h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1a2e44;
  margin-top: 16px;
  letter-spacing: -0.01em;
}

.post-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a2e44;
  margin-top: 8px;
}

.post-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 4px;
}

.post-body ul li {
  padding-left: 24px;
  position: relative;
  color: #2a3f55;
}

.post-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 7px;
  border-left: 2px solid #4a9fd4;
  border-bottom: 2px solid #4a9fd4;
  transform: rotate(-45deg);
}

.post-cta-box {
  margin-top: 20px;
  background: linear-gradient(135deg, #e8f4fb 0%, #f0f8ff 100%);
  border: 1.5px solid #b8d8ee;
  border-radius: 14px;
  padding: 36px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.post-cta-text {
  flex: 1;
  font-size: 15.5px;
  color: #1a3a5c;
  line-height: 1.7;
  min-width: 200px;
}

.post-cta-box .btn-primary {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 60px 24px 40px;
    text-align: center;
    min-height: unset;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .nav-links {
    display: none;
  }

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

  .ba-heading {
    font-size: 26px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-visual-inner {
    max-width: 100%;
  }

  .sample-slider {
    aspect-ratio: 4 / 3;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }
}
