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

:root {
  --bg-color: #f7f6fc;
  --bg-alt: #fcfbff;
  --text-dark: #0b0b1f;
  --text-soft: #66667a;
  --primary: #6a35f0;
  --primary-deep: #4b1fd3;
  --accent-pink: #ec4899;
  --white: #ffffff;
  --border-soft: rgba(106, 53, 240, 0.14);
  --shadow-soft: 0 16px 35px rgba(32, 16, 80, 0.08);
  --shadow-primary: 0 14px 30px rgba(106, 53, 240, 0.22);
  --gradient-primary: linear-gradient(135deg, #6a35f0, #ec4899);
  --gradient-text: linear-gradient(90deg, #7c3aed, #ec4899);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg-color);
  color: var(--text-dark);
  padding-bottom: 90px;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section-badge,
.section-tag,
.reviews-tag,
.pricing-tag,
.office-tag,
.social-proof-tag,
.page-eyebrow,
.mini-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(106, 53, 240, 0.08);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.btn-primary,
.btn-secondary,
.hero-btn,
.reviews-btn,
.plan-btn,
.office-map-btn,
.footer-cta,
.faq-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary,
.hero-btn,
.reviews-btn,
.plan-btn,
.office-map-btn,
.footer-cta {
  padding: 14px 26px;
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.btn-secondary,
.faq-link {
  padding: 14px 24px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover,
.btn-secondary:hover,
.hero-btn:hover,
.reviews-btn:hover,
.plan-btn:hover,
.office-map-btn:hover,
.footer-cta:hover,
.faq-link:hover {
  transform: translateY(-2px);
}

.btn-arrow,
.hero-btn span,
.reviews-btn span,
.plan-btn span,
.office-map-btn span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  background: var(--white);
  color: var(--primary);
}

/* Layout */
.hero-section,
.inner-page-hero {
  position: relative;
  overflow: hidden;
}

.hero-overlay-shapes,
.page-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  border: 2px solid rgba(106, 53, 240, 0.07);
  border-radius: 50%;
}

.shape-1 {
  width: 180px;
  height: 270px;
  left: -70px;
  top: 80px;
}

.shape-2 {
  width: 140px;
  height: 210px;
  right: -40px;
  top: 40px;
}

.shape-3 {
  width: 180px;
  height: 270px;
  left: -60px;
  bottom: 70px;
}

.shape-4 {
  width: 220px;
  height: 220px;
  right: 10%;
  bottom: -70px;
}

.site-header {
  padding-top: 22px;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 14px 18px;
  border: 1px solid rgba(106, 53, 240, 0.08);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(15, 15, 35, 0.05);
}

.logo-text {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.05;
  color: #131325;
  text-decoration: none;
}

.logo-text span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #5f2eea;
  letter-spacing: 0.8px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.menu-toggle {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(106, 53, 240, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(15, 15, 35, 0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 26px rgba(15, 15, 35, 0.1);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open {
  border-color: rgba(106, 53, 240, 0.22);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: #4e4e63;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(106, 53, 240, 0.09);
  color: var(--primary);
  transform: translateY(-1px);
}

.header-cta-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-cta {
  padding: 12px 22px;
  font-size: 14px;
}

.whatsapp-btn {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 23px;
  box-shadow: var(--shadow-primary);
  transition: transform 0.25s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
}

.mobile-menu {
  width: 100%;
  padding: 14px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 241, 255, 0.98) 100%);
  border: 1px solid rgba(106, 53, 240, 0.1);
  box-shadow: 0 18px 40px rgba(45, 22, 112, 0.12);
}

.mobile-menu.is-open {
  display: block;
  animation: menuReveal 0.28s ease;
}

.mobile-nav {
  display: grid;
  gap: 10px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(106, 53, 240, 0.08);
  text-decoration: none;
  color: #43435a;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(15, 15, 35, 0.04);
}

.mobile-nav a::after {
  content: "\2192";
  color: var(--primary);
  font-size: 16px;
}

.mobile-nav a.active {
  background: linear-gradient(135deg, rgba(106, 53, 240, 0.12), rgba(236, 72, 153, 0.12));
  border-color: rgba(106, 53, 240, 0.18);
  color: var(--primary-deep);
}

.mobile-menu-footer {
  margin-top: 14px;
}

.mobile-menu-cta {
  width: 100%;
}

@keyframes menuReveal {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section {
  padding: 24px 0 70px;
  min-height: 60vh;
  background: #f8f7fc;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(420px, 520px) minmax(340px, 460px);
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding-top: 54px;
}

.branding-hero-main {
  grid-template-columns: minmax(420px, 520px) minmax(340px, 460px);
}

.branding-hero-main .hero-content h1 {
  max-width: 700px;
}

.branding-hero-main .hero-content p {
  max-width: 620px;
}

.branding-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.branding-visual-frame {
  position: relative;
  width: min(100%, 450px);
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(247, 244, 255, 0.98) 100%);
  border: 1px solid rgba(106, 53, 240, 0.1);
  box-shadow: 0 22px 48px rgba(15, 15, 35, 0.08);
  overflow: hidden;
}

.branding-visual-frame::before,
.branding-visual-frame::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.branding-visual-frame::before {
  width: 240px;
  height: 240px;
  right: -70px;
  top: -70px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.18) 0%, rgba(236, 72, 153, 0) 72%);
}

.branding-visual-frame::after {
  width: 180px;
  height: 180px;
  left: -60px;
  bottom: -60px;
  background: radial-gradient(circle, rgba(106, 53, 240, 0.16) 0%, rgba(106, 53, 240, 0) 72%);
}

.branding-visual-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(106, 53, 240, 0.08);
  filter: blur(2px);
}

.branding-visual-orb.one {
  width: 96px;
  height: 96px;
  top: 24px;
  left: 24px;
}

.branding-visual-orb.two {
  width: 150px;
  height: 150px;
  right: 18px;
  bottom: 18px;
  background: rgba(236, 72, 153, 0.1);
}

.branding-visual-grid {
  position: relative;
  display: grid;
  gap: 14px;
  z-index: 1;
}

.branding-main-panel {
  min-height: 182px;
  border-radius: 28px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(106, 53, 240, 0.14), rgba(236, 72, 153, 0.12));
  border: 1px solid rgba(106, 53, 240, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.branding-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.branding-panel-title {
  display: grid;
  gap: 6px;
}

.branding-panel-title strong {
  font-size: 22px;
  line-height: 1.1;
  color: var(--text-dark);
}

.branding-panel-title span {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}

.branding-mark {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--primary);
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(15, 15, 35, 0.08);
}

.branding-swatch-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.branding-swatch {
  height: 46px;
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.branding-swatch.one {
  background: linear-gradient(135deg, #6a35f0, #8b5cf6);
}

.branding-swatch.two {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.branding-swatch.three {
  background: linear-gradient(135deg, #ec4899, #fb7185);
}

.branding-swatch.four {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.branding-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.branding-mini-card {
  position: relative;
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(106, 53, 240, 0.08);
  box-shadow: 0 12px 24px rgba(15, 15, 35, 0.05);
  overflow: hidden;
}

.branding-mini-card .card-icon {
  margin-bottom: 12px;
}

.branding-mini-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.branding-mini-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
}

.branding-showcase-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(180deg, #fcfbff 0%, #f7f6fc 100%);
}

.branding-showcase-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.branding-showcase-card {
  position: relative;
  padding: 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(106, 53, 240, 0.1);
  box-shadow: 0 18px 38px rgba(15, 15, 35, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branding-showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(15, 15, 35, 0.1);
}

.branding-showcase-card-large {
  grid-row: span 2;
  min-height: 640px;
}

.branding-showcase-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(106, 53, 240, 0.08), rgba(236, 72, 153, 0.08));
}

.branding-showcase-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 31, 0.02), rgba(106, 53, 240, 0.08));
  z-index: 1;
  pointer-events: none;
}

.branding-showcase-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.branding-showcase-card:hover .branding-showcase-media img {
  transform: scale(1.04);
}

.branding-showcase-card-large .branding-showcase-media {
  height: 540px;
}

.branding-showcase-card:not(.branding-showcase-card-large) .branding-showcase-media {
  height: 250px;
}

.branding-showcase-caption {
  position: relative;
  margin-top: 16px;
  padding: 4px 4px 2px;
}

.branding-showcase-caption span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(106, 53, 240, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.branding-showcase-caption p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.hero-content h1 {
  font-size: 72px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-dark);
}

body.site-secondary .hero-content h1,
body.site-secondary .contact-hero-content h1 {
  font-size: 64px;
}

.hero-content p {
  margin-top: 26px;
  font-size: 18px;
  font-weight: 500;
  color: #5f2eea;
}

.hero-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.trust-point {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(106, 53, 240, 0.1);
  color: #4a4a61;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(15, 15, 35, 0.05);
}

.trust-point::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient-primary);
  flex: 0 0 10px;
}

/* Components */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-form-wrap {
  display: flex;
  justify-content: flex-end;
}

.contact-form,
.contact-detail-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.contact-form {
  width: 100%;
  max-width: 450px;
  border-radius: 28px;
  padding: 28px;
}

.form-group {
  margin-bottom: 16px;
}

.form-status {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.form-status.is-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.18);
  color: #15803d;
}

.form-status.is-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.16);
  color: #b91c1c;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(106, 53, 240, 0.14);
  border-radius: 16px;
  background: #fff;
  padding: 16px 18px;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8a8a9b;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(106, 53, 240, 0.08);
}

.form-btn {
  margin: 20px auto 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  box-shadow: var(--shadow-primary);
  transition: transform 0.25s ease;
}

.form-btn:hover {
  transform: translateY(-2px);
}

.form-btn span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.section-header,
.pricing-header,
.office-location-header,
.social-proof-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-header h2,
.pricing-header h2,
.office-location-header h2,
.social-proof-header h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--text-dark);
}

.section-header h2 span,
.pricing-header h2 span,
.office-location-header h2 span,
.social-proof-header h2 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section-header p,
.pricing-header p,
.office-location-header p,
.social-proof-header p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
}

/* Sections */
.projects-section,
.pricing-section,
.office-location-section,
.social-proof-section,
.contact-section,
.cta-panel-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.projects-section {
  background: #ffffff;
}

.pricing-section,
.office-location-section,
.social-proof-section,
.contact-section,
.cta-panel-section {
  background: linear-gradient(180deg, #fcfbff 0%, #f7f6fc 100%);
}

.projects-grid,
.social-proof-grid {
  display: grid;
  gap: 22px;
}

.projects-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.project-card,
.proof-card,
.social-card,
.pricing-card,
.review-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(106, 53, 240, 0.1);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(15, 15, 35, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover,
.proof-card:hover,
.social-card:hover,
.pricing-card:hover,
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 15, 35, 0.1);
}

.project-image-wrap {
  display: block;
  overflow: hidden;
}

.project-image-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.project-card:hover .project-image-wrap img {
  transform: scale(1.05);
}

.project-content {
  padding: 22px 22px 24px;
}

.project-meta {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.project-content h3 {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 12px;
}

.project-content h3 a,
.project-content h3 {
  color: var(--text-dark);
  text-decoration: none;
}

.project-content p,
.proof-card p,
.social-content p,
.review-card p,
.plan-desc,
.contact-detail-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
}

.project-link,
.social-content a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.project-link::after,
.social-content a::after,
.text-link::after {
  content: "\2192";
  font-size: 16px;
  transition: transform 0.3s ease;
}

.project-link:hover::after,
.social-content a:hover::after,
.text-link:hover::after {
  transform: translateX(4px);
}

.google-reviews-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #fcfbff 0%, #f7f6fc 100%);
}

.reviews-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.reviews-summary {
  position: sticky;
  top: 30px;
}

.reviews-summary h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--text-dark);
  margin: 18px 0 24px;
}

.reviews-summary h2 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.google-rating-box {
  background: #ffffff;
  border: 1px solid rgba(106, 53, 240, 0.12);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 14px 34px rgba(15, 15, 35, 0.06);
  margin-bottom: 24px;
}

.rating-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.rating-number {
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
  color: var(--text-dark);
}

.google-text {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stars,
.review-stars {
  color: #fbbc05;
  letter-spacing: 3px;
}

.stars {
  font-size: 24px;
  margin-bottom: 14px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.review-card {
  padding: 24px 22px;
}

.review-stars {
  font-size: 18px;
  margin-bottom: 14px;
}

.review-user {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-user strong {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 700;
}

.review-user span {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 26px 22px 24px;
  border-radius: 28px;
}

.featured-plan {
  border-color: rgba(106, 53, 240, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 243, 255, 0.98) 100%);
  box-shadow: 0 20px 45px rgba(106, 53, 240, 0.14);
}

.plan-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(106, 53, 240, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}

.featured-badge {
  background: var(--gradient-primary);
  color: #fff;
}

.pricing-card h3 {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 16px;
}

.plan-price strong {
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
}

.plan-price span {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  padding-bottom: 7px;
}

.plan-features,
.feature-list,
.contact-list,
.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.plan-features {
  margin-bottom: 24px;
}

.plan-features li,
.feature-list li,
.contact-list li,
.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.6;
  color: #3f3f55;
}

.plan-features li::before,
.feature-list li::before,
.contact-list li::before,
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.office-location-card,
.cta-panel,
.contact-layout {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(106, 53, 240, 0.1);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(15, 15, 35, 0.06);
}

.office-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.office-info-box h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.office-map-wrap {
  width: 100%;
  height: 420px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(106, 53, 240, 0.1);
  background: #f3f1fb;
}

.office-map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.social-proof-grid {
  grid-template-columns: repeat(4, 1fr);
}

.proof-card {
  padding: 28px 22px;
  text-align: center;
}

.proof-number {
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 14px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.proof-card h3,
.social-content h3,
.contact-detail-card h3,
.contact-detail-card h3 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.social-card {
  padding: 14px;
}

.social-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.platform,
.label {
  font-size: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-block;
}

.platform.google {
  background: rgba(66, 133, 244, 0.12);
  color: #4285f4;
}

.platform.linkedin {
  background: rgba(10, 102, 194, 0.12);
  color: #0a66c2;
}

.platform.instagram {
  background: rgba(236, 72, 153, 0.12);
  color: #d63384;
}

.platform.facebook {
  background: rgba(59, 89, 152, 0.12);
  color: #3b5998;
}

.label {
  background: rgba(106, 53, 240, 0.08);
  color: var(--primary);
}

.social-image {
  position: relative;
  margin-bottom: 16px;
}

.social-image::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: var(--gradient-primary);
  z-index: 0;
  opacity: 0.9;
}

.social-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 20px;
  background: #fff;
}

.inner-page-hero {
  padding: 24px 0 80px;
  background: linear-gradient(180deg, #f8f7fc 0%, #f3f0ff 100%);
}

.contact-hero-main {
  align-items: center;
  padding-top: 54px;
}

.contact-hero-content h1 {
  max-width: 680px;
}

.contact-hero-content p {
  max-width: 620px;
}

.contact-hero-form-wrap {
  justify-content: flex-end;
}

.contact-hero-form {
  max-width: 450px;
}

.contact-info-grid {
  display: grid;
  gap: 22px;
}

.card-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(106, 53, 240, 0.1);
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 18px;
}

.contact-info-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}

.contact-detail-card {
  border-radius: 24px;
  padding: 28px 24px;
}

.contact-detail-card a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.branding-form-panel {
  display: block;
  padding: 30px;
}

.branding-full-form {
  width: 100%;
  max-width: none;
  margin: 0;
}

.cta-panel-copy {
  max-width: 640px;
}

.footer {
  padding: 0 0 34px;
  background: transparent;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  border-radius: 26px;
  background: rgba(11, 11, 31, 0.96);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(15, 15, 35, 0.18);
}

.footer-brand strong {
  display: block;
  font-size: 22px;
  color: #fff;
  margin-bottom: 6px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  font-weight: 500;
}

.contact-fixed-bar {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(500px, calc(100% - 20px));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 8px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(15, 15, 35, 0.15);
  z-index: 9999;
}

.contact-btn {
  flex: 1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 40px;
  padding: 12px 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.contact-btn .icon {
  font-size: 16px;
}

.contact-btn.call {
  background: rgba(106, 53, 240, 0.08);
  color: var(--primary);
}

.contact-btn.email {
  background: rgba(236, 72, 153, 0.08);
  color: var(--accent-pink);
}

.contact-btn.whatsapp {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(106, 53, 240, 0.3);
}

.contact-btn:hover {
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1199px) {
  .hero-main {
    grid-template-columns: 1fr 420px;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 62px;
  }

  .branding-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .branding-showcase-card-large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: auto;
  }

  .branding-showcase-card-large .branding-showcase-media {
    height: 460px;
  }
}

@media (max-width: 991px) {
  .container {
    width: min(100% - 30px, 100%);
  }

  .hero-main,
  .cta-panel,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .header-bar,
  .cta-panel,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav,
  .header-cta-wrap {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-main {
    gap: 34px;
  }

  .branding-hero-visual {
    min-height: 420px;
  }

  .hero-content,
  .reviews-summary {
    text-align: center;
  }

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

  .hero-form-wrap {
    justify-content: center;
  }

  .branding-showcase-section {
    padding: 60px 0;
  }

  .branding-showcase-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .branding-showcase-card {
    padding: 14px;
    border-radius: 24px;
  }

  .branding-showcase-card-large .branding-showcase-media,
  .branding-showcase-card:not(.branding-showcase-card-large) .branding-showcase-media {
    height: 220px;
  }

  .branding-showcase-caption {
    margin-top: 14px;
  }

  .contact-hero-content p {
    max-width: 100%;
  }

  .reviews-summary {
    position: static;
  }

  .rating-top {
    justify-content: center;
  }

  .projects-grid,
  .pricing-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .social-proof-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header h2,
  .pricing-header h2,
  .office-location-header h2,
  .social-proof-header h2,
  .reviews-summary h2 {
    font-size: 34px;
  }

}

@media (max-width: 767px) {
  body {
    padding-bottom: 94px;
  }

  .container {
    width: min(100% - 24px, 100%);
  }

  .site-header {
    padding-top: 16px;
  }

  .header-bar {
    padding: 16px;
    border-radius: 20px;
    gap: 12px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }

  .logo-text {
    font-size: 22px;
  }

  .logo-text span {
    font-size: 12px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-cta-wrap {
    width: auto;
    justify-content: flex-end;
  }

  .mobile-menu {
    grid-column: 1 / -1;
  }

  .whatsapp-btn {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    font-size: 19px;
    box-shadow: 0 14px 26px rgba(106, 53, 240, 0.22);
  }

  .hero-section,
  .inner-page-hero {
    padding: 18px 0 48px;
  }

  .hero-main {
    margin-top: 30px;
    gap: 24px;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: 0;
  }

  .hero-content p,
  .section-header p,
  .pricing-header p,
  .office-location-header p,
  .social-proof-header p {
    font-size: 14px;
  }

  .hero-trust-points {
    gap: 10px;
    margin-top: 18px;
  }

  .trust-point {
    width: 100%;
    justify-content: flex-start;
    padding: 11px 14px;
  }

  .branding-visual-frame {
    width: 100%;
    padding: 22px;
  }

  .branding-mini-grid {
    grid-template-columns: 1fr;
  }

  .branding-swatch-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions {
    margin-top: 22px;
  }

  .btn-primary,
  .btn-secondary,
  .hero-btn,
  .reviews-btn,
  .plan-btn,
  .office-map-btn,
  .footer-cta,
  .form-btn {
    width: 100%;
    font-size: 15px;
    padding: 12px 18px;
  }

  .contact-form,
  .office-location-card,
  .cta-panel,
  .contact-detail-card {
    padding: 20px 16px;
    border-radius: 22px;
  }

  .review-card,
  .proof-card,
  .pricing-card,
  .social-card {
    border-radius: 20px;
    padding: 20px 18px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 14px;
    padding: 14px 15px;
    border-radius: 14px;
  }

  .contact-form textarea {
    min-height: 130px;
  }

  .shape-1 {
    width: 120px;
    height: 200px;
    left: -60px;
    top: 80px;
  }

  .shape-2 {
    width: 90px;
    height: 150px;
    right: -35px;
    top: 45px;
  }

  .shape-3 {
    width: 120px;
    height: 200px;
    left: -55px;
    bottom: 90px;
  }

  .shape-4 {
    width: 130px;
    height: 130px;
    right: -30px;
    bottom: 15%;
  }

  .projects-section,
  .google-reviews-section,
  .pricing-section,
  .office-location-section,
  .social-proof-section,
  .contact-section,
  .cta-panel-section {
    padding: 60px 0;
  }

  .section-header,
  .pricing-header,
  .office-location-header,
  .social-proof-header {
    margin-bottom: 28px;
  }

  .section-header h2,
  .pricing-header h2,
  .office-location-header h2,
  .social-proof-header h2,
  .reviews-summary h2 {
    font-size: 28px;
  }

  .projects-grid,
  .social-proof-grid,
  .reviews-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .project-image-wrap img,
  .social-image img {
    height: 220px;
  }

  .project-content {
    padding: 18px 18px 20px;
  }

  .project-content h3,
  .pricing-card h3 {
    font-size: 20px;
  }

  .rating-number,
  .plan-price strong {
    font-size: 42px;
  }

  .google-text {
    font-size: 24px;
  }

  .stars {
    font-size: 20px;
  }

  .office-map-wrap {
    height: 280px;
    border-radius: 18px;
  }

  .footer-inner {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .footer-links {
    gap: 12px;
  }
}

@media (min-width: 992px) {
  .contact-fixed-bar {
    bottom: 24px;
  }
}
