/* ==========================================
   ABOUT PAGE — PREMIUM MINIMAL CONTENT
========================================== */

/* INTRO */
.about-intro {
  text-align: center;
  margin: 3rem auto 4rem;
}
.about-intro h2 {
  font-size: 2.2rem;
  margin-bottom: .5rem;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-intro p {
  color: var(--color-muted);
  font-size: 1rem;
}

/* SPLIT STORY */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 5rem;
  align-items: start;
}
.about-split h3 {
  font-size: 1.8rem;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-split p {
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 1.3rem;
}

.left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* FOUNDER */
.founder-section {
  margin: 5rem 0;
}
.founder-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
}
.founder-text p {
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 1.3rem;
}
.founder-photo img {
  width: 100%;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

/* PHOTO */
.about-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  padding: 6px;
  margin-left: 3rem;
  background: linear-gradient(
    145deg,
    rgba(0,255,182,0.35),
    rgba(127,90,240,0.35)
  );
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.18),
    0 18px 40px rgba(0,0,0,0.6),
    0 0 28px rgba(0,255,182,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* VALUES */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
  gap: 1.2rem;
  margin: 3rem 0 5rem;
}
.value-card {
  padding: 1.5rem 1rem;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}
.value-card p {
  color: var(--color-muted);
}

/* PARTNERS */
.partners h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.partner-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.partner img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}



/* SEO */
.seo-block {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  margin-top: 4rem;
}
.seo-block p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-muted);
}



/* ==========================================
   CONTACT — IDIOTOON (COMPACT, YOUR DESIGN)
========================================== */

.contact-cta {
  display: flex;
  justify-content: center;
  margin: 4.5rem 0;
}

/* CARD — SHORTER HEIGHT */
.contact-card {
  max-width: 520px;                 /* wider */
  width: min(92vw, 720px);          /* responsive */
  padding: 1.9rem 2.4rem 1rem;
  border-radius: 22px;
  text-align: center;
  

  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.5);
}

/* TITLE */
.contact-card h2 {
  font-size: 1.85rem;
  margin-bottom: .35rem;
}

/* SUBTEXT */
.contact-card p {
  color: var(--color-muted);
  margin-bottom: 1.4rem; /* ↓ reduced */
}

/* --------------------------
   GET IN TOUCH (YOUR BUTTON)
-------------------------- */

.contact-toggle {
  padding: 0.85rem 2.4rem;
  font-size: 1rem;
  font-weight: 600;

  background: linear-gradient(
    90deg,
    #7f5af0,
    #4adeb2
  );

  color: #0b1020;
  border: none;
  border-radius: 999px;

  cursor: pointer;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    opacity .2s ease;
}

.contact-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(79, 209, 197, 0.35);
  opacity: 0.95;
}


/* --------------------------
   FORM (CLOSED)
-------------------------- */
.contact-form {
  display: block;
  margin-top: 1.8rem; /* ↓ reduced */

  max-height: 0;
  opacity: 0;
  overflow: hidden;

  transition:
    max-height .4s ease,
    opacity .3s ease;
}

/* OPEN — SHORTER */
.contact-form.open {
  max-height: 360px; /* ↓ reduced */
  opacity: 1;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1.2rem; /* ↓ reduced */
  padding: .85rem 1rem;

  font-size: .9rem;
  border-radius: 12px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--color-text);
}

.contact-form textarea {
  min-height: 110px; /* ↓ reduced */
  margin-top: 0.1rem;
}

/* SEND BUTTON */
.contact-form button[type="submit"] {
  margin-top: .4rem;
  padding: .7rem 2.1rem;

  font-size: .9rem;
  font-weight: 600;

  background: #7f5af0;
  color: #fff;
  border-radius: 16px;
  border: none;

  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(127,90,240,0.45);
}



/* HONEYPOT */
.hp { display: none !important; }

/* MOBILE */
@media (max-width: 520px) {
  .contact-card {
    padding: 1.8rem 1.6rem;
  }
}
