@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&family=Noto+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
  --ea-bg: #07090d;
  --ea-bg-soft: #10131a;
  --ea-bg-card: rgba(255, 255, 255, 0.055);
  --ea-bg-card-strong: rgba(255, 255, 255, 0.085);
  --ea-border: rgba(255, 255, 255, 0.12);
  --ea-border-strong: rgba(235, 255, 158, 0.35);
  --ea-text: #f7f7f2;
  --ea-muted: #b9bdc8;
  --ea-accent: #efffa7;
  --ea-red: #d42e3c;
  --ea-radius-xl: 34px;
  --ea-radius-lg: 24px;
  --ea-radius-md: 16px;
  --ea-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.ea-about-page,
.ea-about-page * {
  box-sizing: border-box;
}

.ea-about-page {
  font-family: 'Manrope', 'Noto Sans', Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(212, 46, 60, 0.22), transparent 28%),
    radial-gradient(circle at 85% 5%, rgba(239, 255, 167, 0.12), transparent 24%),
    var(--ea-bg);
  color: var(--ea-text);
  overflow: hidden;
}

.ea-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.ea-section {
  padding: 96px 0;
}

.ea-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--ea-accent);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ea-eyebrow::before {
  content: '';
  width: 42px;
  height: 2px;
  background: var(--ea-accent);
  border-radius: 999px;
}

.ea-section-heading {
  max-width: 850px;
  margin: 0 auto 46px;
  text-align: center;
}

.ea-left-heading {
  margin-left: 0;
  text-align: left;
}

.ea-section-heading h2,
.ea-story-main h2,
.ea-cta-card h2 {
  margin: 0;
  color: var(--ea-text);
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.ea-section-heading p,
.ea-story-main p,
.ea-cta-card p {
  color: var(--ea-muted);
}

.ea-hero {
  min-height: 100vh;
  padding: 150px 0 80px;
  display: flex;
  align-items: center;
  position: relative;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

.ea-hero::after {
  content: '';
  position: absolute;
  inset: auto -10% -20% -10%;
  height: 260px;
  background: radial-gradient(circle, rgba(212,46,60,0.32), transparent 65%);
  pointer-events: none;
}

.ea-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ea-hero h1 {
  margin: 0;
  color: var(--ea-text);
  font-size: clamp(70px, 11vw, 154px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.ea-hero-lead {
  max-width: 780px;
  margin: 30px 0 0;
  color: var(--ea-muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.72;
}

.ea-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.ea-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
  text-decoration: none !important;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.ea-btn-primary {
  background: var(--ea-accent);
  color: #090b10 !important;
  border: 1px solid var(--ea-accent);
}

.ea-btn-outline {
  background: transparent;
  color: var(--ea-text) !important;
  border: 1px solid var(--ea-border-strong);
}

.ea-btn:hover {
  transform: translateY(-3px);
}

.ea-profile-card {
  position: relative;
  border: 1px solid var(--ea-border);
  border-radius: var(--ea-radius-xl);
  padding: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.035));
  box-shadow: var(--ea-shadow);
  overflow: hidden;
}

.ea-profile-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(239,255,167,0.12);
  pointer-events: none;
}

.ea-profile-image-wrap {
  height: 460px;
  border-radius: 28px;
  overflow: hidden;
  background: #171b25;
}

.ea-profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.ea-profile-info {
  padding: 22px 4px 12px;
}

.ea-profile-info h2 {
  margin: 0 0 5px;
  color: var(--ea-text);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.ea-profile-info p {
  margin: 0;
  color: var(--ea-accent);
  font-weight: 700;
}

.ea-profile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ea-profile-stats div {
  padding: 18px;
  border: 1px solid var(--ea-border);
  border-radius: 18px;
  background: rgba(0,0,0,0.18);
}

.ea-profile-stats strong,
.ea-profile-stats span {
  display: block;
}

.ea-profile-stats strong {
  color: var(--ea-accent);
  font-size: 25px;
  font-weight: 800;
}

.ea-profile-stats span {
  margin-top: 4px;
  color: var(--ea-muted);
  font-size: 13px;
  line-height: 1.35;
}

.ea-summary-grid,
.ea-skills-grid,
.ea-process-grid,
.ea-results-grid {
  display: grid;
  gap: 22px;
}

.ea-summary-grid {
  grid-template-columns: repeat(3, 1fr);
}

.ea-summary-card,
.ea-skill-card,
.ea-process-card,
.ea-result-card,
.ea-language-card,
.ea-cert-card,
.ea-education-list article,
.ea-timeline-content {
  border: 1px solid var(--ea-border);
  border-radius: var(--ea-radius-lg);
  background: var(--ea-bg-card);
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
}

.ea-summary-card,
.ea-skill-card,
.ea-process-card,
.ea-result-card {
  padding: 28px;
}

.ea-card-number,
.ea-process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 34px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: #0b0d11;
  background: var(--ea-accent);
  font-weight: 800;
}

.ea-summary-card h3,
.ea-skill-card h3,
.ea-process-card h3,
.ea-result-card h3,
.ea-language-card h3,
.ea-cert-card h3 {
  margin: 0 0 12px;
  color: var(--ea-accent);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.ea-summary-card p,
.ea-skill-card p,
.ea-process-card p,
.ea-result-card p,
.ea-language-card p,
.ea-cert-card li,
.ea-timeline-content li,
.ea-education-list span,
.ea-education-list small {
  color: var(--ea-muted);
  font-size: 15.5px;
  line-height: 1.75;
}

.ea-story-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.ea-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: stretch;
}

.ea-story-main {
  padding: 42px;
  border: 1px solid var(--ea-border);
  border-radius: var(--ea-radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
}

.ea-story-main p:not(.ea-eyebrow) {
  margin: 26px 0 0;
  font-size: 18px;
  line-height: 1.82;
}

.ea-language-card {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ea-language-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.ea-language-list div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ea-border);
}

.ea-language-list div:last-child {
  border-bottom: 0;
}

.ea-language-list span {
  color: var(--ea-text);
  font-weight: 700;
}

.ea-language-list strong {
  color: var(--ea-accent);
  font-weight: 800;
}

.ea-skills-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.ea-experience-section {
  background: #080a0f;
}

.ea-timeline {
  position: relative;
  display: grid;
  gap: 26px;
}

.ea-timeline::before {
  content: '';
  position: absolute;
  left: 214px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(var(--ea-accent), transparent);
  opacity: 0.45;
}

.ea-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 50px;
}

.ea-timeline-date {
  color: var(--ea-accent);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  padding-top: 28px;
}

.ea-timeline-content {
  position: relative;
  padding: 30px;
}

.ea-timeline-content::before {
  content: '';
  position: absolute;
  left: -41px;
  top: 34px;
  width: 14px;
  height: 14px;
  background: var(--ea-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(239,255,167,0.1);
}

.ea-timeline-content h3 {
  margin: 0 0 8px;
  color: var(--ea-text);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.ea-role {
  margin: 0 0 18px !important;
  color: var(--ea-accent) !important;
  font-weight: 700;
}

.ea-timeline-content ul,
.ea-cert-card ul {
  padding-left: 18px;
  margin: 0;
}

.ea-timeline-content li,
.ea-cert-card li {
  margin-bottom: 10px;
}

.ea-timeline-content li::marker,
.ea-cert-card li::marker {
  color: var(--ea-accent);
}

.ea-results-grid {
  grid-template-columns: repeat(3, 1fr);
}

.ea-result-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.ea-result-metrics span {
  display: inline-flex;
  padding: 9px 12px;
  border: 1px solid rgba(239,255,167,0.2);
  border-radius: 999px;
  color: var(--ea-accent);
  background: rgba(239,255,167,0.06);
  font-size: 13px;
  font-weight: 800;
}

.ea-education-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
}

.ea-education-list {
  display: grid;
  gap: 14px;
}

.ea-education-list article {
  padding: 24px;
}

.ea-education-list strong,
.ea-education-list span,
.ea-education-list small {
  display: block;
}

.ea-education-list strong {
  color: var(--ea-text);
  font-size: 21px;
  font-weight: 800;
}

.ea-education-list span {
  margin-top: 7px;
}

.ea-education-list small {
  margin-top: 8px;
  color: var(--ea-accent);
  font-weight: 800;
}

.ea-cert-card {
  padding: 34px;
  align-self: start;
  position: sticky;
  top: 110px;
}

.ea-cta-section {
  padding: 40px 0 110px;
}

.ea-cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 42px;
  border: 1px solid var(--ea-border-strong);
  border-radius: var(--ea-radius-xl);
  background:
    radial-gradient(circle at 10% 20%, rgba(212,46,60,0.22), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
}

.ea-cta-card p:not(.ea-eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 1199px) {
  .ea-hero-grid,
  .ea-story-grid,
  .ea-education-grid {
    grid-template-columns: 1fr;
  }

  .ea-profile-card,
  .ea-language-card,
  .ea-cert-card {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
  }

  .ea-cert-card {
    position: static;
  }

  .ea-summary-grid,
  .ea-skills-grid,
  .ea-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 991px) {
  .ea-hero {
    min-height: auto;
    padding: 135px 0 64px;
  }

  .ea-section {
    padding: 72px 0;
  }

  .ea-hero h1 {
    font-size: clamp(58px, 16vw, 100px);
  }

  .ea-profile-image-wrap {
    height: 430px;
  }

  .ea-timeline::before {
    left: 11px;
  }

  .ea-timeline-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 34px;
  }

  .ea-timeline-date {
    padding-top: 0;
  }

  .ea-timeline-content::before {
    left: -30px;
    top: 32px;
  }

  .ea-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .ea-container {
    width: min(100% - 28px, 1180px);
  }

  .ea-summary-grid,
  .ea-skills-grid,
  .ea-process-grid,
  .ea-results-grid {
    grid-template-columns: 1fr;
  }

  .ea-hero-lead,
  .ea-story-main p:not(.ea-eyebrow) {
    font-size: 16px;
    line-height: 1.75;
  }

  .ea-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ea-btn {
    width: 100%;
    min-height: 52px;
    transform: none !important;
  }

  .ea-profile-card,
  .ea-story-main,
  .ea-language-card,
  .ea-summary-card,
  .ea-skill-card,
  .ea-process-card,
  .ea-result-card,
  .ea-timeline-content,
  .ea-cert-card,
  .ea-cta-card {
    border-radius: 22px;
  }

  .ea-story-main,
  .ea-cta-card {
    padding: 26px;
  }

  .ea-profile-image-wrap {
    height: 360px;
    border-radius: 20px;
  }

  .ea-profile-image {
    object-position: center top;
  }

  .ea-profile-stats {
    grid-template-columns: 1fr;
  }

  .ea-section-heading {
    text-align: left;
  }

  .ea-section-heading h2,
  .ea-story-main h2,
  .ea-cta-card h2 {
    font-size: clamp(34px, 12vw, 52px);
    line-height: 1.02;
  }

  .ea-summary-card,
  .ea-skill-card,
  .ea-process-card,
  .ea-result-card,
  .ea-timeline-content,
  .ea-education-list article,
  .ea-cert-card,
  .ea-language-card {
    padding: 22px;
  }
}

@media (max-width: 480px) {
  .ea-hero {
    padding-top: 120px;
  }

  .ea-hero h1 {
    font-size: 60px;
    letter-spacing: -0.07em;
  }

  .ea-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .ea-eyebrow::before {
    width: 28px;
  }

  .ea-profile-image-wrap {
    height: 300px;
  }

  .ea-timeline-item {
    padding-left: 26px;
  }

  .ea-timeline-content::before {
    left: -25px;
  }
}

/* === v2 fixes: clipping, timeline, CTA and mobile images === */
.ea-about-page {
  overflow-x: clip;
  overflow-y: visible;
}

.ea-about-page img {
  max-width: 100%;
}

.ea-section-heading h2,
.ea-story-main h2,
.ea-cta-card h2 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  letter-spacing: -0.045em;
}

.ea-section-heading h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.04;
}

.ea-summary-section .ea-section-heading,
.ea-process-section .ea-section-heading {
  max-width: 980px;
}

.ea-hero-grid,
.ea-story-grid,
.ea-education-grid,
.ea-cta-card {
  max-width: 100%;
}

.ea-profile-image-wrap {
  background: linear-gradient(145deg, #141923, #090b10);
}

.ea-profile-image {
  object-position: center center;
}

/* CTA section was getting visually clipped on some widths */
.ea-cta-section {
  padding: 54px 0 110px;
}

.ea-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
}

.ea-cta-card > div {
  min-width: 0;
}

.ea-cta-card h2 {
  max-width: 880px;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.06;
}

.ea-cta-card .ea-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Timeline date and dot spacing fix */
.ea-timeline::before {
  left: 284px;
}

.ea-timeline-item {
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 78px;
}

.ea-timeline-date {
  text-align: right;
  padding-top: 34px;
  padding-right: 6px;
  white-space: normal;
  overflow-wrap: normal;
}

.ea-timeline-content::before {
  left: -47px;
}

@media (max-width: 1199px) {
  .ea-section-heading h2 {
    font-size: clamp(34px, 6vw, 54px);
  }

  .ea-cta-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 991px) {
  .ea-profile-image-wrap {
    height: 420px;
  }

  .ea-profile-image {
    object-position: center top;
  }

  .ea-timeline::before {
    left: 12px;
  }

  .ea-timeline-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 38px;
  }

  .ea-timeline-date {
    text-align: left;
    padding: 0;
  }

  .ea-timeline-content::before {
    left: -32px;
    top: 32px;
  }
}

@media (max-width: 767px) {
  .ea-hero {
    padding-top: 118px;
  }

  .ea-hero-grid {
    gap: 32px;
  }

  .ea-profile-card {
    padding: 14px;
  }

  .ea-profile-image-wrap {
    height: clamp(300px, 86vw, 390px);
  }

  .ea-section-heading h2,
  .ea-story-main h2,
  .ea-cta-card h2 {
    font-size: clamp(30px, 10vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .ea-cta-card {
    padding: 24px;
  }

  .ea-cta-card .ea-btn {
    width: 100%;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .ea-container {
    width: min(100% - 24px, 1180px);
  }

  .ea-hero h1 {
    font-size: clamp(54px, 18vw, 72px);
  }

  .ea-profile-image-wrap {
    height: 290px;
  }

  .ea-timeline-item {
    padding-left: 30px;
  }

  .ea-timeline-content::before {
    left: -27px;
  }
}


/* === v3 critical visual fixes === */

/* Hero title: "Haqqımda" yazısı bölünməsin */
.ea-hero h1 {
  font-size: clamp(58px, 8.8vw, 118px) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.055em !important;
  white-space: nowrap;
  max-width: 100%;
}

.ea-hero-content {
  min-width: 0;
}

.ea-hero-lead {
  max-width: 720px;
}

/* Böyük section başlıqları 1366px ekranda daşmasın */
.ea-summary-section .ea-section-heading,
.ea-process-section .ea-section-heading,
.ea-results-section .ea-section-heading {
  max-width: 900px !important;
}

.ea-summary-section .ea-section-heading h2,
.ea-process-section .ea-section-heading h2,
.ea-results-section .ea-section-heading h2,
.ea-section-heading h2 {
  font-size: clamp(32px, 3.9vw, 54px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

/* Button hover-da sürüşməsin */
.ea-btn,
.ea-btn:hover,
.ea-btn:focus,
.ea-btn:active {
  transform: none !important;
}

.ea-btn::before,
.ea-btn::after {
  display: none !important;
}

.ea-btn-primary:hover,
.ea-btn-primary:focus {
  background: var(--ea-accent) !important;
  color: #090b10 !important;
  border-color: var(--ea-accent) !important;
}

.ea-btn-outline:hover,
.ea-btn-outline:focus {
  background: transparent !important;
  color: var(--ea-text) !important;
  border-color: var(--ea-border-strong) !important;
}

/* CTA button stabil qalsın */
.ea-cta-card .ea-btn {
  min-width: 190px;
  text-align: center;
}

@media (max-width: 1199px) {
  .ea-hero h1 {
    font-size: clamp(56px, 10.5vw, 102px) !important;
  }
}

@media (max-width: 991px) {
  .ea-hero h1 {
    white-space: normal;
    font-size: clamp(54px, 15vw, 86px) !important;
    line-height: 0.98 !important;
  }

  .ea-summary-section .ea-section-heading h2,
  .ea-process-section .ea-section-heading h2,
  .ea-results-section .ea-section-heading h2,
  .ea-section-heading h2 {
    font-size: clamp(30px, 7vw, 46px) !important;
  }
}

@media (max-width: 767px) {
  .ea-hero h1 {
    font-size: clamp(48px, 17vw, 68px) !important;
    letter-spacing: -0.045em !important;
  }

  .ea-section-heading h2,
  .ea-story-main h2,
  .ea-cta-card h2 {
    font-size: clamp(28px, 9vw, 42px) !important;
    line-height: 1.12 !important;
  }

  .ea-cta-card .ea-btn {
    min-width: 0;
    width: 100%;
  }
}