/* Animated gradient background */
.bg-animated {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, #f6f8fa 0%, #e3e6ee 60%, #cfd8dc 100%);
  animation: gradientMove 10s ease-in-out infinite alternate;
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Fonts */
body {
  font-family: 'DM Sans', 'Space Grotesk', sans-serif;
  margin: 0;
  min-height: 100vh;
  color: #232946;
  overflow-x: hidden;
  background: #f6f8fa;
}

/* Floating pill navbar */
.nav-pill {
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  max-width: 900px;
  background: rgba(255,255,255,0.92);
  border-radius: 2.5rem;
  box-shadow: 0 8px 32px 0 rgba(44,49,66,0.08), 0 0 0 4px #cfd8dc33;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  z-index: 100;
  border: 1.5px solid #e3e6ee;
  transition: box-shadow 0.3s;
}

/* Logo */
.nav-logo span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #232946;
  text-shadow: none;
}
.nav-logo .neon {
  color: #4f5d75;
  text-shadow: none;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 700;
  color: #232946;
  position: relative;
  padding: 0.3rem 0.7rem;
  border-radius: 1.2rem;
  transition: color 0.2s, background 0.2s;
}
.nav-links li a::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #7da2a9 0%, #4f5d75 100%);
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -4px;
}
.nav-links li a:hover {
  color: #4f5d75;
  background: rgba(79,93,117,0.08);
}
.nav-links li a:hover::after {
  width: 100%;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  margin-left: 1.5rem;
}
.nav-hamburger div {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #7da2a9 0%, #4f5d75 100%);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-hamburger.active div:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-hamburger.active div:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active div:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(79,93,117,0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.4s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.nav-mobile.active {
  display: flex;
}
.nav-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
.nav-mobile ul li a {
  font-size: 2.2rem;
  font-family: 'Space Grotesk', sans-serif;
  color: #7da2a9;
  text-decoration: none;
  font-weight: 700;
  text-shadow: none;
  transition: color 0.2s;
}
.nav-mobile ul li a:hover {
  color: #232946;
  text-shadow: none;
}

/* Hero Section */
.hero-diagonal {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 7rem;
  padding-bottom: 3rem;
  background: none;
}
.hero-bg-shape {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(120deg, #e3e6ee 60%, #7da2a9 100%);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  opacity: 0.35;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 1200px;
  min-height: 60vh;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.hero-left {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 2rem;
}
.hero-left h1 {
  font-size: 3rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  margin: 0 0 1.2rem 0;
  color: #232946;
  line-height: 1.1;
}
.hero-left .accent {
  color: #4f5d75;
  background: linear-gradient(90deg, #7da2a9 0%, #4f5d75 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-tagline {
  font-size: 1.25rem;
  color: #4f5d75;
  margin-bottom: 2rem;
  font-family: 'DM Sans', sans-serif;
  max-width: 400px;
}
.hero-cta {
  display: flex;
  gap: 1.2rem;
}
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 0.8rem 2.2rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px 0 rgba(44,49,66,0.08);
}
.btn-primary {
  background: linear-gradient(90deg, #4f5d75 0%, #7da2a9 100%);
  color: #fff;
  border: none;
}
.btn-primary:hover {
  background: linear-gradient(90deg, #7da2a9 0%, #4f5d75 100%);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: #4f5d75;
  border: 2px solid #7da2a9;
}
.btn-outline:hover {
  background: #e3e6ee;
  color: #232946;
  border-color: #4f5d75;
}

/* Hero Right */
.hero-right {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  min-height: 320px;
  padding-right: 2rem;
}
.hero-illustration {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 8px 32px #7da2a966);
  border-radius: 2rem;
  background: #fff;
}

/* Scroll Down Arrow */
.scroll-down-arrow {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-down-arrow span {
  display: block;
  width: 32px;
  height: 32px;
  border-left: 4px solid #7da2a9;
  border-bottom: 4px solid #7da2a9;
  transform: rotate(-45deg);
  margin: 0 auto;
  animation: arrowBounce 1.2s infinite;
}
@keyframes arrowBounce {
  0%, 100% { opacity: 0.7; transform: translateY(0) rotate(-45deg);}
  50% { opacity: 1; transform: translateY(12px) rotate(-45deg);}
}

/* Solutions Section */
.solutions-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 0 3rem 0;
  position: relative;
}
.solutions-title {
  font-size: 2.3rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #232946;
  margin-bottom: 3rem;
  text-align: center;
  letter-spacing: 1px;
}
.solution-block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
  margin-bottom: 4rem;
  min-height: 320px;
  position: relative;
}
.solution-block.reverse {
  flex-direction: row-reverse;
}
.solution-img {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  max-width: 400px;
  height: 260px;
  position: relative;
}
.solution-img img {
  width: 100%;
  max-width: 340px;
  max-height: 240px;
  object-fit: contain;
  border-radius: 2rem 0 2rem 0;
  box-shadow: 0 8px 32px #7da2a933;
  background: #fff;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
}
.solution-block.reverse .solution-img img {
  border-radius: 0 2rem 0 2rem;
}
.solution-text {
  flex: 2 1 0;
  padding: 0 1rem;
}
.solution-text h3 {
  font-size: 1.6rem;
  font-family: 'Space Grotesk', sans-serif;
  color: #4f5d75;
  margin-bottom: 1rem;
  font-weight: 700;
}
.solution-text p {
  font-size: 1.13rem;
  color: #232946;
  font-family: 'DM Sans', sans-serif;
  margin: 0;
  line-height: 1.6;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(.77,0,.18,1), transform 0.7s cubic-bezier(.77,0,.18,1);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Tech Stack Section */
.tech-stack-section {
  width: 100%;
  padding: 4rem 0 3rem 0;
  background: none;
  position: relative;
  overflow: hidden;
}
.tech-stack-title {
  font-size: 2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #232946;
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: 1px;
}
.tech-marquee-bg {
  width: 100vw;
  background: linear-gradient(90deg, #e3e6ee 0%, #f6f8fa 100%);
  padding: 2rem 0;
  overflow: hidden;
  position: relative;
}
.tech-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.tech-marquee-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  animation: techMarqueeScroll 28s linear infinite;
  will-change: transform;
}
.tech-marquee-track img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px #cfd8dc);
  transition: transform 0.2s;
  background: #fff;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
}
.tech-marquee-track img:hover {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 4px 16px #7da2a933;
}

@keyframes techMarqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Insights Section */
.insights-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 0 3rem 0;
}
.insights-title {
  font-size: 2.1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #232946;
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: 1px;
}
.insights-layout {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  justify-content: space-between;
}
.insights-timeline {
  flex: 1.2 1 0;
  position: relative;
  padding-left: 2.2rem;
  margin-top: 0.5rem;
}
.insights-timeline::before {
  content: '';
  position: absolute;
  left: 1.1rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #7da2a9 0%, #4f5d75 100%);
  border-radius: 2px;
  opacity: 0.7;
}
.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  min-height: 70px;
}
.timeline-dot {
  position: absolute;
  left: -0.3rem;
  top: 0.5rem;
  width: 1.1rem;
  height: 1.1rem;
  background: #7da2a9;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px #7da2a933;
}
.timeline-content {
  margin-left: 2.2rem;
  background: none;
}
.timeline-content h4 {
  font-size: 1.15rem;
  font-family: 'Space Grotesk', sans-serif;
  color: #4f5d75;
  margin: 0 0 0.3rem 0;
  font-weight: 700;
}
.timeline-content p {
  font-size: 1rem;
  color: #232946;
  margin: 0 0 0.3rem 0;
  font-family: 'DM Sans', sans-serif;
}
.timeline-date {
  font-size: 0.92rem;
  color: #7da2a9;
  font-family: 'DM Sans', sans-serif;
  opacity: 0.7;
}

/* Featured Article */
.insights-featured {
  flex: 2 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(120deg, #e3e6ee 60%, #f6f8fa 100%);
  border-radius: 2rem;
  box-shadow: 0 8px 32px #cfd8dc33;
  overflow: hidden;
  min-width: 320px;
  max-width: 520px;
}
.insights-featured img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 2rem 2rem 0 0;
  background: #fff;
}
.featured-content {
  padding: 2rem 2rem 1.2rem 2rem;
}
.featured-content h3 {
  font-size: 1.4rem;
  font-family: 'Space Grotesk', sans-serif;
  color: #4f5d75;
  margin-bottom: 1rem;
  font-weight: 700;
}
.featured-content p {
  font-size: 1.08rem;
  color: #232946;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 1.2rem;
}
.featured-readmore {
  font-size: 1rem;
  color: #7da2a9;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}
.featured-readmore:hover {
  color: #4f5d75;
}

/* Team Section */
.team-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 0 3rem 0;
}
.team-title {
  font-size: 2.1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #232946;
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: 1px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem 1.5rem;
  justify-items: center;
  align-items: end;
  margin: 0 auto;
  position: relative;
}
.team-member {
  perspective: 900px;
  width: 170px;
  height: 230px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: transform 0.2s;
}
.team-member.offset {
  margin-top: 3rem;
}
.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(.77,0,.18,1);
  transform-style: preserve-3d;
}
.team-member:hover .flip-inner,
.team-member:focus .flip-inner {
  transform: rotateY(180deg);
}
.flip-front, .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flip-front {
  z-index: 2;
}
.flip-back {
  background: linear-gradient(120deg, #e3e6ee 60%, #f6f8fa 100%);
  border-radius: 2rem;
  box-shadow: 0 8px 32px #cfd8dc33;
  transform: rotateY(180deg);
  flex-direction: column;
  padding: 1.2rem 1rem;
  align-items: center;
  justify-content: center;
}
.team-info h4 {
  font-size: 1.15rem;
  font-family: 'Space Grotesk', sans-serif;
  color: #4f5d75;
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.team-info .role {
  font-size: 0.98rem;
  color: #7da2a9;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 0.7rem;
  display: block;
}
.team-info p {
  font-size: 0.98rem;
  color: #232946;
  font-family: 'DM Sans', sans-serif;
  margin: 0;
  text-align: center;
}

/* Hexagonal Frame */
.hex-frame {
  width: 120px;
  height: 120px;
  background: #fff;
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
  overflow: hidden;
  box-shadow: 0 4px 16px #7da2a933;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hex-frame img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 0;
}

/* Round Frame */
.round-frame {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 16px #7da2a933;
  display: flex;
  align-items: center;
  justify-content: center;
}
.round-frame img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
}

/* Responsive Team Grid */
@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
  }
  .team-member {
    width: 150px;
    height: 210px;
  }
}
@media (max-width: 700px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 0.7rem;
  }
  .team-member {
    width: 120px;
    height: 170px;
  }
  .hex-frame, .round-frame {
    width: 80px;
    height: 80px;
  }
  .hex-frame img, .round-frame img {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 500px) {
  .team-section {
    padding: 2rem 0 1rem 0;
  }
  .team-title {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1rem 0;
  }
  .team-member {
    width: 100vw;
    max-width: 260px;
    height: 140px;
    margin: 0 auto;
  }
}

/* Responsive Insights */
@media (max-width: 900px) {
  .insights-layout {
    flex-direction: column;
    gap: 2.5rem;
    align-items: stretch;
  }
  .insights-featured {
    max-width: 100%;
    min-width: 0;
  }
  .insights-featured img {
    height: 160px;
  }
  .featured-content {
    padding: 1.2rem 1rem 1rem 1rem;
  }
  .insights-timeline {
    padding-left: 1.2rem;
  }
  .timeline-content {
    margin-left: 1.5rem;
  }
}
@media (max-width: 600px) {
  .insights-section {
    padding: 2.5rem 0 1.5rem 0;
  }
  .insights-title {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .insights-featured img {
    height: 90px;
    border-radius: 1rem 1rem 0 0;
  }
  .featured-content {
    padding: 0.7rem 0.5rem 0.7rem 0.5rem;
  }
  .featured-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .featured-content p {
    font-size: 0.92rem;
    margin-bottom: 0.7rem;
  }
  .insights-timeline {
    padding-left: 0.7rem;
  }
  .timeline-content {
    margin-left: 1rem;
  }
  .timeline-content h4 {
    font-size: 0.98rem;
  }
  .timeline-content p {
    font-size: 0.88rem;
  }
  .timeline-date {
    font-size: 0.8rem;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-pill {
    padding: 0.5rem 1rem;
  }
  .nav-logo span {
    font-size: 1.5rem;
  }
  .hero-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    min-height: 0;
  }
  .hero-left, .hero-right {
    padding: 0;
    min-width: 0;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .hero-left {
    align-items: center;
  }
  .hero-tagline {
    max-width: 100%;
  }
  .hero-illustration {
    max-width: 320px;
  }
  .solutions-section {
    padding: 3rem 0 2rem 0;
  }
  .solution-block {
    flex-direction: column !important;
    gap: 2rem;
    min-height: 0;
    margin-bottom: 3rem;
  }
  .solution-img {
    min-width: 0;
    max-width: 320px;
    height: 180px;
  }
  .solution-img img {
    max-width: 220px;
    max-height: 160px;
  }
  .solution-text {
    padding: 0;
    text-align: center;
  }
  .tech-marquee-track {
    gap: 2rem;
  }
  .tech-marquee-track img {
    height: 40px;
    padding: 0.3rem 0.7rem;
  }
}
@media (max-width: 600px) {
  .nav-pill {
    top: 1rem;
    width: 98vw;
    padding: 0.4rem 0.7rem;
    max-width: 99vw;
  }
  .nav-logo span {
    font-size: 1.1rem;
  }
  .hero-diagonal {
    padding-top: 5rem;
    padding-bottom: 2rem;
    min-height: 60vh;
  }
  .hero-left h1 {
    font-size: 2rem;
  }
  .hero-cta .btn {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
  }
  .hero-illustration {
    max-width: 220px;
  }
  .scroll-down-arrow span {
    width: 24px;
    height: 24px;
    border-width: 3px;
  }
  .solutions-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .solution-block {
    gap: 1.2rem;
    margin-bottom: 2rem;
  }
  .solution-img {
    max-width: 180px;
    height: 100px;
  }
  .solution-img img {
    max-width: 120px;
    max-height: 80px;
  }
  .solution-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
  }
  .solution-text p {
    font-size: 0.98rem;
  }
  .tech-stack-title {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .tech-marquee-bg {
    padding: 1rem 0;
  }
  .tech-marquee-track {
    gap: 1.2rem;
  }
  .tech-marquee-track img {
    height: 28px;
    padding: 0.2rem 0.4rem;
  }
}

/* Contact Section - Light Theme */
.contact-section {
  background: linear-gradient(135deg, #f6f8fa 60%, #e3e6ee 100%);
  color: #232946;
  padding: 70px 0 50px 0;
  text-align: center;
}
.contact-container {
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(44,49,66,0.10);
  padding: 48px 32px 36px 32px;
  border: 1.5px solid #e3e6ee;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.1rem;
  margin-bottom: 12px;
  color: #232946;
  font-weight: 700;
  letter-spacing: 1px;
}
.contact-desc {
  font-size: 1.08rem;
  margin-bottom: 28px;
  color: #4f5d75;
  max-width: 340px;
}
.contact-form {
  width: 100%;
  max-width: 340px;
  margin: 0 auto 18px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form .form-row {
  width: 100%;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid #e3e6ee;
  background: #f6f8fa;
  color: #232946;
  font-size: 1rem;
  margin-bottom: 0;
  outline: none;
  transition: background 0.2s, border-color 0.2s;
  box-sizing: border-box;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 2px 8px rgba(44,49,66,0.04);
}
.contact-form input:focus,
.contact-form textarea:focus {
  background: #e3e6ee;
  border-color: #7da2a9;
}
.contact-form textarea {
  resize: vertical;
  min-height: 90px;
  max-height: 180px;
}
.contact-form button {
  width: 100%;
  padding: 13px;
  font-size: 1.08rem;
  border-radius: 12px;
  border: none;
  background: linear-gradient(90deg, #7da2a9 0%, #4f5d75 100%);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px 0 rgba(44,49,66,0.10);
  margin-top: 6px;
  letter-spacing: 0.5px;
}
.contact-form button:hover {
  background: linear-gradient(90deg, #4f5d75 0%, #7da2a9 100%);
  box-shadow: 0 4px 16px 0 rgba(44,49,66,0.14);
}
.contact-info {
  margin-top: 18px;
  font-size: 1rem;
  color: #4f5d75;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 340px;
  word-break: break-word;
  overflow-wrap: break-word;
  background: #f6f8fa;
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 2px 8px rgba(44,49,66,0.04);
  border: 1px solid #e3e6ee;
  align-items: flex-start;
}
.contact-info span {
  font-size: 0.98rem;
  color: #4f5d75;
  margin-bottom: 2px;
}

/* Footer Section */
.footer-section {
  background: linear-gradient(90deg, #f6f8fa 0%, #e3e6ee 100%);
  color: #4f5d75;
  padding: 40px 0 24px 0;
  font-size: 1rem;
  text-align: center;
  border-top: 1.5px solid #e3e6ee;
  box-shadow: 0 -2px 16px 0 rgba(44,49,66,0.06);
}
.footer-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(44,49,66,0.06);
  padding: 32px 18px 18px 18px;
}
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #232946;
  font-weight: 700;
}
.footer-logo .neon {
  color: #7da2a9;
  text-shadow: 0 0 8px #7da2a988;
}
.footer-links {
  display: flex;
  gap: 22px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: #4f5d75;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
}
.footer-links a:hover {
  color: #fff;
  background: linear-gradient(90deg, #7da2a9 0%, #4f5d75 100%);
}
.footer-social {
  display: flex;
  gap: 18px;
  margin-bottom: 10px;
  justify-content: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f8fa;
  border-radius: 50%;
  box-shadow: 0 2px 8px #cfd8dc;
  width: 36px;
  height: 36px;
  transition: background 0.2s;
}
.footer-social img {
  height: 22px;
  width: 22px;
  filter: brightness(0.9);
  transition: filter 0.2s;
  padding: 2px;
}
.footer-social a:hover {
  background: linear-gradient(90deg, #7da2a9 0%, #4f5d75 100%);
}
.footer-social a:hover img {
  filter: brightness(1.2);
}
.footer-copy {
  font-size: 1rem;
  color: #7da2a9;
  margin-top: 10px;
  opacity: 0.85;
  letter-spacing: 0.5px;
}