.sc-container {
  padding: 160px 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
  perspective: 1200px;
}

.sc-content {
  z-index: 2;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.4s ease-out;
}

.sc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-emphasis);
  color: var(--color-background);
  padding: 6px 12px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  animation: sc-fadeInDown 0.8s ease-out 0.8s both;
}

.sc-badge-new {
  font-family: var(--font-family-montserrat);
  background: var(--color-background);
  color: var(--color-emphasis);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: var(--font-size-xs);
  font-weight: 600;
}

.sc-title {
  font-family: var(--font-family-montserrat);
  font-size: clamp(3rem, 6vw, 70px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 20px;
}

.sc-title>span {
  display: block;
  opacity: 0;
  animation: sc-fadeInUp 0.8s ease-out forwards;
}

.sc-title .sc-line-1 {
  animation-delay: 0.2s;
}

.sc-title .sc-line-2 {
  animation-delay: 0.4s;
}

.sc-smarter-wrapper {
  position: relative;
  display: inline-block;
}

#sc-smarter-underline {
  position: absolute;
  bottom: 2px;
  left: -10px;
  width: calc(100% + 20px);
  height: 35px;
  z-index: -1;
  stroke: var(--color-text);
  stroke-width: 8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: sc-drawLine 4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.sc-subtitle {
  font-family: var(--font-family-helvetica);
  font-size: var(--font-size-md);
  color: var(--color-text-secondary);
  line-height: 1.5;
  opacity: 0;
  animation: sc-fadeInUp 0.8s ease-out 1s both;
}

.sc-character-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 300px;
  transform-style: preserve-3d;
  transition: transform 0.4s ease-out;
  opacity: 0;
  animation: sc-fadeInLeft 1s ease-out 0.1s both;
}

.sc-character {
  width: 100%;
  max-width: 245px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.sc-character:hover {
  transform: scale(1.03);
}

.sc-character:active {
  transform: scale(0.97);
}

.sc-character svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.sc-floating {
  animation: sc-float 3s ease-in-out infinite;
}

.sc-breathing {
  animation: sc-breathe 2s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes sc-breathe {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

.sc-blink {
  animation: sc-blink 4s infinite;
}

@keyframes sc-blink {

  0%,
  90%,
  100% {
    opacity: 1;
  }

  95% {
    opacity: 0;
  }
}

.sc-wobble {
  animation: sc-wobble 2.5s ease-in-out infinite;
  transform-origin: center top;
}

@keyframes sc-wobble {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(2deg);
  }

  75% {
    transform: rotate(-2deg);
  }
}

.sc-glow {
  animation: sc-glow 3s ease-in-out infinite alternate;
}

@keyframes sc-glow {
  from {
    filter: drop-shadow(0 0 5px var(--shadow-color));
  }

  to {
    filter: drop-shadow(0 0 15px var(--shadow-color));
  }
}

.sc-pulse {
  animation: sc-pulse 2s infinite;
}

@keyframes sc-pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

@keyframes sc-float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes sc-drawLine {
  0% {
    stroke-dashoffset: 500;
  }

  50% {
    stroke-dashoffset: 0;
  }

  /* 100% {
    stroke-dashoffset: -500;
  } */
}

@keyframes sc-fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes sc-fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sc-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .sc-container {
    padding: 160px 40px 40px;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .sc-character-container {
    order: -1;
    min-height: auto;
  }

  .sc-character {
    max-width: 200px;
  }

  .sc-badge {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .sc-character {
    max-width: 180px;
  }
}

/* =========================================================== */
/* Contact Form */

.cf-container {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--color-background);
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 4px 6px var(--shadow-color);
  opacity: 0;
  padding: 60px 20px;
}

.cf-left-section {
  padding: 30px;
  background-color: var(--color-background);
}

.cf-right-section {
  padding: 30px;
  border-radius: 10px;
  background-color: var(--color-background-secondary);
}

.cf-title {
  font-family: var(--font-family-montserrat);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
}

.cf-subtitle {
  font-family: var(--font-family-helvetica);
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(30px);
}

.cf-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cf-contact-method {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  opacity: 0;
  transform: translateX(-50px);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cf-contact-method:hover {
  transform: translateX(-45px);
}

.cf-contact-icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-black);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cf-contact-icon:hover {
  background-color: var(--color-emphasis-hover);
  transform: scale(1.15) rotate(8deg);
}

.cf-contact-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-background);
}

.cf-contact-info h3 {
  font-family: var(--font-family-montserrat);
  font-size: var(--font-size-md);
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 8px;
}

.cf-contact-info p {
  font-family: var(--font-family-montserrat);
  color: var(--color-text-secondary);
  font-size: var(--font-size-xs);
  line-height: 1.4;
  margin-bottom: 8px;
}

.cf-contact-details {
  font-family: var(--font-family-montserrat);
  font-size: var(--font-size-xs);
  color: var(--color-text);
}


@media (max-width: 768px) {
  .cf-container {
    grid-template-columns: 1fr;
  }

  .cf-left-section,
  .cf-right-section {
    padding: 30px 20px;
  }

}

@media (max-width: 480px) {

  .cf-left-section,
  .cf-right-section {
    padding: 20px 15px;
  }
}

/* =========================================================================  */
/* Contact Form Section */

.cf-contact-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-background);
  border-radius: 20px;
  box-shadow: 0 8px 20px var(--shadow-color);
  padding: 30px;
}

.cf-form-section {
  width: 100%;
}

.cf-form-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 25px;
  color: var(--color-text);
}

.cf-text-highlight {
  color: var(--color-emphasis);
}

.cf-form-control {
  width: 100%;
  padding: 12px 20px;
  border-radius: 10px;
  background-color: var(--color-background);
  border: none;
  margin-bottom: 25px;
  font-size: var(--font-size-sm);
  color: var(--color-text);
}

.cf-form-control::placeholder {
  color: var(--color-text-secondary);
}

.cf-form-label {
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  color: var(--color-text);
}

.cf-btn-orange {
  background-color: var(--color-emphasis);
  color: var(--color-background);
  font-weight: bold;
  border: none;
  padding: 12px;
  border-radius: 10px;
  width: 100%;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 20px;
}

.cf-btn-orange:hover:not(:disabled) {
  background-color: var(--color-emphasis-hover);
}

.cf-btn-orange:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.cf-error {
  color: red;
  font-size: .875rem;
  margin-top: -10px;
  margin-bottom: 10px;
}

.cf-success-message {
  display: none;
  color: green;
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
}

.cf-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cf-col-half {
  flex: 1 1 calc(50% - 15px);
  min-width: 200px;
}

@media (max-width: 576px) {
  .cf-row {
    flex-direction: column;
  }

  .cf-col-half {
    flex: 1 1 100%;
  }
}

.cf-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.cf-modal.show {
  visibility: visible;
  opacity: 1;
}

.cf-modal-content {
  background: var(--color-background-secondary);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px var(--shadow-color);
  text-align: center;
  max-width: 400px;
  width: 90%;
  color: var(--color-text);
}