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

:root {
  --coral: #EF5350;
  --coral-light: #FF8A80;
  --purple: #424285;
  --purple-dark: #2C2C5F;
  --bg-gray: #E8EAED;
  --white: #FFFFFF;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #E8EAED 0%, #C5CAE9 50%, #E8EAED 100%);
  background-attachment: fixed;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  max-width: 540px;
  margin: 0 auto;
  padding: 20px 16px;
  width: 100%;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 24px;
}

.logo {
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 8px;
}

.tagline {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 1.5px;
  margin: 0;
}

/* Hero Section */
.hero {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 32px 20px 24px;
  box-shadow: 0 8px 24px rgba(66, 66, 133, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.circles-bg {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.circles-bg::before {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-title {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: linear-gradient(90deg, var(--coral) 0%, var(--coral-light) 100%);
  color: var(--white);
  padding: 16px 48px;
  border-radius: 8px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.3;
  margin: 0 auto 28px;
  display: block;
  width: fit-content;
  box-shadow: 0 6px 20px rgba(239, 83, 80, 0.25);
}

/* Action Buttons */
.actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--coral-light) 100%);
  padding: 14px 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(239, 83, 80, 0.2);
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(239, 83, 80, 0.3);
}

.action-btn:focus {
  outline: 3px solid rgba(239, 83, 80, 0.4);
  outline-offset: 2px;
}

.action-btn.ghost {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
  box-shadow: none;
}

.icon-circle {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(66, 66, 133, 0.3);
}

.icon-circle img {
  width: 40px;
  height: 40px;
}

.action-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.action-text strong {
  color: var(--purple);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.action-text span {
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  font-weight: 500;
}

.action-btn.ghost .action-text strong {
  color: var(--purple);
  font-size: 15px;
}

/* Footer Bar */
.footer-bar {
  background: var(--purple);
  margin-top: 24px;
  padding: 18px 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.social-icons img {
  width: 36px;
  height: 36px;
}

.contact-info {
  color: var(--white);
  font-size: 11px;
  text-align: center;
  line-height: 1.6;
  opacity: 0.95;
  /* allow wrapping if needed but keep phone intact */
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: anywhere;
}

.contact-info strong {
  font-weight: 600;
}

/* Contact form styles */
.contact-section{margin-top:22px}
.contact-card{background:linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.95));padding:18px;border-radius:12px;box-shadow:0 8px 24px rgba(66,66,133,0.06);}
.contact-card h2{font-size:20px;color:var(--purple);margin-bottom:12px;text-align:left}
.contact-card .field{margin-bottom:10px;display:flex;flex-direction:column;gap:6px}
.contact-card label{font-size:13px;color:var(--purple-dark)}
.contact-card input,.contact-card textarea{padding:10px;border-radius:8px;border:1px solid #e6e6ee;font-size:14px}
.actions-form{display:flex;justify-content:flex-end}
.btn-primary{background:linear-gradient(90deg,var(--coral),var(--coral-light));color:#fff;padding:10px 16px;border-radius:999px;border:none;font-weight:700;cursor:pointer}
.small{font-size:12px;color:#666;margin-top:8px}

/* Showcase section */
/* showcase removed per request */

/* Responsive */
@media (min-width: 640px) {
  .page-wrapper {
    max-width: 600px;
    padding: 32px 24px;
  }

  .hero-title {
    font-size: 32px;
    padding: 20px 64px;
  }

  .footer-bar {
    flex-direction: row;
    justify-content: space-between;
    padding: 16px 24px;
  }

  .contact-info {
    font-size: 12px;
    text-align: right;
  }

.contact-info .no-break {
  white-space: nowrap;
}
}
