/* =========================
   HOME PAGE
   Kodesel butik landing
   ========================= */


/* =========================
   GLOBAL buttons ayarlari
   ========================= */

button,
a,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
  padding:0;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
[role="button"]:focus:not(:focus-visible) {
  outline: none;
}

button{
  background:var(--bg-menubutton);
  color:var(--text-main);
}

button:active {
  transform: none;
  background:var(--bg-button-active) !important;
  color:var(--text-button-active) !important;
}

.button-has-set-icon {
  border: 0 !important;
  border-radius: 999px;
  background:transparent;
}

.button-has-set-icon:hover{
  background: var(--bg-button-hover);
}


.loginButton:active{
  background:var(--bg-button-active) !important;
  color:var(--text-button-active) !important;

}

.heroActions a:active{
background:var(--bg-button-active) !important;
  color:var(--text-button-active) !important;
}



html,
body {
  width: 100%;
  min-width: 300px;
  min-height: var(--app1-viewport-height);
  background:var(--bg-header);

  margin: 0;
  padding: 0;

  scroll-behavior: smooth;
  -ms-overflow-style: none;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;

  font-weight: 300;
}

body {
  overflow: hidden;
  background: var(--bg-header);
}

::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;

  display: none;

  background: transparent;
}

::-webkit-scrollbar-button {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

/* =========================
   MAIN WRAPPER
   ========================= */

#mainCont {
  width: 100%;
  height: var(--app1-viewport-height);
  min-width: 300px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(120, 198, 213, 0.12),
      transparent 32rem
    ),
    linear-gradient(
      180deg,
      var(--bg-header) 0%,
      var(--bg-main) 42%,
      var(--bg-surface) 100%
    );

  color: var(--text-main);
  font-weight: 300;
}

#scrollWrap {
  width: 100%;
  height: 100%;

  overflow-x: hidden;
  overflow-y: auto;
}

#scrollcont {
  width: 100%;
  min-height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* =========================
   HEADER
   ========================= */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;

  width: 100%;
  min-width: 300px;

  height:
    calc(
      80px +
      var(--app1-device-safe-top)
    );

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  padding:
    var(--app1-device-safe-top)
    calc(
      10px +
      var(--app1-device-safe-right)
    )
    0
    calc(
      10px +
      var(--app1-device-safe-left)
    );

  background: var(--bg-header);



    background:var(--bg-header);
  box-shadow: var(--shadow-button);
}

#dark-mode-button {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  justify-self: start;

  padding: 0;

  border: none;
  border-radius: var(--radius-round);

  color: var(--text-secondary);


  cursor: pointer;


}



#logoImgCont {
  width: 154px;

  display: flex;
  align-items: center;
  justify-content: center;

  justify-self: center;
}

#logo {
  width: 154px;

  display: block;

  filter: var(--png-bg);
}

.loginCont {
  justify-self: end;
   
  display: flex;
  align-items: center;
}

.loginButton {
  height: 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  padding: 0 11px;

  border: 1px solid var(--border-medium);
  border-radius: var(--radius-round);

  color: var(--text-main);
  font-weight: 400;

  font-size: 13px;

}

.loginButton:hover{
  background:var(--bg-button-hover)
}



/* =========================
   MAIN
   ========================= */

#main {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;

  padding:
    calc(
      128px +
      var(--app1-device-safe-top)
    )
    calc(
      28px +
      var(--app1-device-safe-right)
    )
    0
    calc(
      28px +
      var(--app1-device-safe-left)
    );
}

#main p {
  font-size: 16px;
}

/* =========================
   HERO
   ========================= */

.homeHero {
  width: 100%;
  min-height: 620px;

  display: grid;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(0, 1.08fr);
  align-items: center;

  gap: 46px;

  padding: 38px 0 42px;
}

.homeHeroText {
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 14px;

  color: var(--text-secondary);

  font-size: 13px !important;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.homeHero h1 {
  margin: 0;

  color: var(--text-main);

  font-size:
    clamp(
      42px,
      5.4vw,
      76px
    );

  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.homeHero h1 span {
  display: block;

  margin-top: 8px;

  color: var(--bg-button-hover);
}

.heroLead {
  max-width: 520px;

  margin: 28px 0 0;

  color: var(--text-secondary);

  font-size: 18px !important;
  line-height: 1.75;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;

  margin-top: 34px;
}

.primaryAction,
.secondaryAction {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 24px;

  border-radius: var(--radius-lg);

  font-size: 15px;
  font-weight: 600;

  transition:
    transform var(--transition-fast),
    opacity var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.primaryAction {
  color: var(--text-main);

  background:
    linear-gradient(
      134deg,
      var(--bg-header),
      var(--bg-button)
    );

  border:
    1px solid
    var(--border-soft);
}

.secondaryAction {
  color: var(--text-main);
  background: var(--bg-main);

  border:
    1px solid
    var(--border-medium);
}



.homeHeroVisual {
  position: relative;

  min-height: 470px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border:
    1px solid
    rgba(255, 255, 255, 0.12);

  border-radius: 34px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.025)
    );

  box-shadow:
    0 28px 80px
    rgba(0, 0, 0, 0.35);
}

.homeHeroVisual::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 75% 24%,
      rgba(120, 198, 213, 0.16),
      transparent 18rem
    ),
    linear-gradient(
      180deg,
      rgba(16, 38, 47, 0.04),
      rgba(16, 38, 47, 0.22)
    );

  pointer-events: none;
}

.homeHeroVisual img {
  width: 100%;
  height: 100%;
  min-height: 470px;

  display: block;

  object-fit: cover;
  object-position: center;
}

/* =========================
   INTRO CARDS
   ========================= */

.homeIntro {
  width: 100%;

  display: grid;
  grid-template-columns:
    repeat(
      3,
      minmax(0, 1fr)
    );

  gap: 18px;

  margin: 18px 0 74px;
}

.introCard {
  min-height: 220px;

  padding: 26px;

  border:
    1px solid
    rgba(255, 255, 255, 0.12);

  border-radius: 26px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.028)
    );

  box-shadow:
    0 18px 42px
    rgba(0, 0, 0, 0.18);
}

.introIcon {
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 22px;

  border:
    1px solid
    var(--border-soft);

  border-radius: 18px;

  color: var(--text-secondary);
  background: var(--bg-button);

  font-size: 24px;
  font-weight: 700;
}

.introCard h2 {
  margin: 0 0 12px;

  color: var(--text-main);

  font-size: 22px;
  line-height: 1.2;
  text-align: left;
}

.introCard p {
  margin: 0;

  color: var(--text-secondary);

  line-height: 1.7;
}

/* =========================
   APPROACH
   ========================= */

.warmSection {
  width: 100%;

  padding: 74px 0;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.08);
}

.sectionHeader {
  max-width: 760px;

  margin: 0 auto 34px;

  text-align: center;
}

.sectionHeader h2 {
  margin: 0;

  color: var(--text-main);

  font-size:
    clamp(
      30px,
      4vw,
      48px
    );

  line-height: 1.12;
  letter-spacing: -0.035em;
}

.approachGrid {
  display: grid;
  grid-template-columns:
    repeat(
      3,
      minmax(0, 1fr)
    );

  gap: 18px;
}

.approachItem {
  padding: 28px;

  border:
    1px solid
    rgba(255, 255, 255, 0.11);

  border-radius: 26px;

  background: var(--bg-card);

  box-shadow:
    0 20px 45px
    rgba(0, 0, 0, 0.16);
}

.approachItem span {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 26px;

  border-radius: 14px;

  color: var(--text-main);

  background:
    linear-gradient(
      135deg,
      var(--bg-button-hover),
      var(--bg-button)
    );

  font-size: 14px;
  font-weight: 700;
}

.approachItem h3 {
  margin: 0 0 12px;

  color: var(--text-main);

  font-size: 22px;
  line-height: 1.22;
}

.approachItem p {
  margin: 0;

  color: var(--text-secondary);

  line-height: 1.72;
}

/* =========================
   VISUAL STORY
   ========================= */

.visualStory {
  width: 100%;
  max-width: 100%;

  padding: 72px 0;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.08);
}

.visualGrid {
  width: 100%;
  max-width: 100%;

  display: grid;
  grid-template-columns:
    repeat(
      3,
      minmax(0, 1fr)
    );

  gap: 18px;
}

.visualCard {
  min-width: 0;
  max-width: 100%;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  border:
    1px solid
    rgba(255, 255, 255, 0.12);

  border-radius: 26px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.028)
    );

  box-shadow:
    0 22px 55px
    rgba(0, 0, 0, 0.22);
}

.visualCard img {
  width: 100%;
  max-width: 100%;

  aspect-ratio: 16 / 10;

  display: block;

  object-fit: cover;
  object-position: center;

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.1);
}

.visualCard div {
  flex: 1;

  display: flex;
  flex-direction: column;

  padding: 24px;
}

.visualCard h3 {
  margin: 0 0 10px;

  color: var(--text-main);

  font-size: 21px;
  line-height: 1.2;
}

.visualCard p {
  margin: 0;

  color: var(--text-secondary);

  line-height: 1.7;
}

/* =========================
   VISUAL STORY LIGHT THEME
   ========================= */

[data-theme="light"] .visualStory {
  border-top-color:
    rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .visualCard {
  border-color:
    rgba(0, 0, 0, 0.08);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.88),
      rgba(255, 255, 255, 0.62)
    );

  box-shadow:
    0 20px 52px
    rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .visualCard img {
  border-bottom-color:
    rgba(0, 0, 0, 0.08);
}

/* =========================
   CALLOUT
   ========================= */

.softCallout {
  width: 100%;

  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto;
  align-items: center;

  gap: 28px;

  margin: 10px 0 72px;
  padding: 34px;

  border:
    1px solid
    rgba(120, 198, 213, 0.18);

  border-radius: 30px;

  background:
    linear-gradient(
      135deg,
      rgba(120, 198, 213, 0.13),
      rgba(255, 255, 255, 0.035)
    );

  box-shadow:
    0 24px 55px
    rgba(0, 0, 0, 0.2);
}

.softCallout h2 {
  max-width: 720px;

  margin: 0;

  color: var(--text-main);

  font-size:
    clamp(
      26px,
      3.4vw,
      40px
    );

  line-height: 1.16;
  letter-spacing: -0.035em;
  text-align: left;
}

.softCallout p:not(.eyebrow) {
  max-width: 720px;

  margin: 16px 0 0;

  color: var(--text-secondary);

  line-height: 1.72;
}

/* =========================
   CONTACT
   ========================= */

#contactWrap {
  width: 100%;

  padding: 20px 0 96px;
}

.container {
  width: 100%;
  max-width: 560px;

  margin: 0 auto;
  padding: 38px;

  border:
    1px solid
    rgba(255, 255, 255, 0.12);

  border-radius: 30px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.028)
    );

  box-shadow:
    0 26px 70px
    rgba(0, 0, 0, 0.25);
}

.container h2 {
  margin: 0 0 12px;

  color: var(--text-main);

  font-size: 32px;
  line-height: 1.18;
  letter-spacing: -0.035em;
  text-align: left;
}

.contactLead {
  margin: 0 0 28px;

  color: var(--text-secondary);

  line-height: 1.72;
}

.contactForm {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

label {
  display: block;

  margin: 14px 0 7px;

  color: var(--text-label);

  font-size: 14px;
  font-weight: 500;
}

input,
textarea {
  width: 100%;

  padding: 14px 15px;

  border:
    1px solid
    var(--border-soft);

  border-radius: 14px;

  outline: none;

  color: var(--text-main) !important;
  background-color: var(--bg-input);

  font: inherit;
  font-size: 16px;

  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

textarea {
  min-height: 130px;

  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--bg-button-hover);

  box-shadow:
    0 0 0 4px
    rgba(120, 198, 213, 0.12);
}

#submitBtn {
  width: 100%;
  min-height: 52px;

  margin-top: 22px;
  padding: 0 18px;

  border:
    1px solid
    var(--border-soft);

  border-radius: 16px;

  color: var(--text-secondary);
  background: var(--bg-button);

  cursor: pointer;

  font: inherit;
  font-size: 16px;
  font-weight: 600;

  transition:
    transform var(--transition-fast),
    opacity var(--transition-fast);
}




#submitBtn:disabled {
  opacity: 0.65;

  cursor: not-allowed;

  transform: none;
}

#statusMessage {
  min-height: 24px;

  margin: 18px 0 0;

  text-align: center;

  font-size: 14px;
}

#statusMessage[data-status="success"] {
  color: var(--text-success);
}

#statusMessage[data-status="error"] {
  color: var(--text-danger);
}

#statusMessage[data-status="loading"] {
  color: var(--text-warning);
}

/* =========================
   LIGHT THEME TUNING
   ========================= */

[data-theme="light"] #mainCont {
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(42, 101, 125, 0.13),
      transparent 32rem
    ),
    linear-gradient(
      180deg,
      #e9eef2 0%,
      var(--bg-main) 45%,
      var(--bg-surface) 100%
    );
}

[data-theme="light"] .homeHeroVisual,
[data-theme="light"] .introCard,
[data-theme="light"] .container {
  border-color:
    rgba(0, 0, 0, 0.08);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.86),
      rgba(255, 255, 255, 0.58)
    );

  box-shadow:
    0 24px 65px
    rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .secondaryAction {
  background: var(--bg-main);

  border-color: var(--border-medium);
}

[data-theme="light"] .approachItem {
  border-color:
    rgba(0, 0, 0, 0.08);

  box-shadow:
    0 18px 42px
    rgba(0, 0, 0, 0.09);
}

[data-theme="light"] .softCallout {
  border-color:
    rgba(0, 0, 0, 0.08);

  background:
    linear-gradient(
      135deg,
      rgba(161, 218, 213, 0.42),
      rgba(255, 255, 255, 0.72)
    );
}

/* =========================
   RESPONSIVE
   ========================= */

@media screen and (max-width: 980px) {
  #main {
    padding-top:
      calc(
        112px +
        var(--app1-device-safe-top)
      );
  }

  .homeHero {
    grid-template-columns: 1fr;

    gap: 32px;

    min-height: auto;

    padding-top: 26px;
  }

  .homeHeroText {
    max-width: 760px;

    margin: 0 auto;

    text-align: center;
  }

  .heroLead {
    margin-right: auto;
    margin-left: auto;
  }

  .heroActions {
    justify-content: center;
  }

  .homeHeroVisual {
    min-height: 390px;
  }

  .homeHeroVisual img {
    min-height: 390px;
  }

  .homeIntro,
  .approachGrid {
    grid-template-columns: 1fr;
  }

  .softCallout {
    grid-template-columns: 1fr;

    text-align: left;
  }

  .softCallout .primaryAction {
    width: fit-content;
  }

  .visualGrid {
    grid-template-columns: 1fr !important;
  }

  .visualCard,
  .visualCard:first-child {
    width: 100%;
    max-width: 100%;

    grid-column: auto !important;
  }

  .visualCard img,
  .visualCard:first-child img {
    aspect-ratio: 16 / 9;
  }
}

@media screen and (max-width: 640px) {
  .header {
    height:
      calc(
        74px +
        var(--app1-device-safe-top)
      );

    grid-template-columns:
      auto
      1fr
      auto;

    padding:
      var(--app1-device-safe-top)
      calc(
        14px +
        var(--app1-device-safe-right)
      )
      0
      calc(
        14px +
        var(--app1-device-safe-left)
      );
  }

  #dark-mode-button {
    width: 40px;
    height: 40px;
  }

  #logoImgCont {
    width: 128px;
  }

  #logo {
    width: 128px;
  }

  .loginButton {
    width: 42px;
    height: 42px;

    padding: 0;

    border-radius: var(--radius-round);
  }

  .loginButton span {
    display: none;
  }

  #main {
    padding:
      calc(
        96px +
        var(--app1-device-safe-top)
      )
      calc(
        16px +
        var(--app1-device-safe-right)
      )
      0
      calc(
        16px +
        var(--app1-device-safe-left)
      );
  }

  .homeHero {
    padding-top: 18px;
  }

  .homeHero h1 {
    font-size:
      clamp(
        38px,
        12vw,
        58px
      );
  }

  .heroLead {
    font-size: 16px !important;
    line-height: 1.7;
  }

  .heroActions {
    width: 100%;
  }

  .primaryAction,
  .secondaryAction {
    width: 100%;
  }

  .homeHeroVisual {
    min-height: 300px;

    border-radius: 24px;
  }

  .homeHeroVisual img {
    min-height: 300px;
  }

  .homeIntro {
    margin-bottom: 48px;
  }

  .introCard,
  .approachItem {
    padding: 22px;

    border-radius: 22px;
  }

  .warmSection {
    padding: 52px 0;
  }

  .sectionHeader {
    text-align: left;
  }

  .visualStory {
    padding: 52px 0;
  }

  .visualGrid {
    display: grid;
    grid-template-columns: 1fr !important;

    gap: 16px;
  }

  .visualCard {
    width: 100%;
    max-width: 100%;

    border-radius: 22px;
  }

  .visualCard img {
    width: 100%;
    max-width: 100%;

    aspect-ratio: 4 / 3;
  }

  .visualCard div {
    padding: 20px;
  }

  .softCallout {
    margin-bottom: 52px;
    padding: 24px;

    border-radius: 24px;
  }

  .container {
    padding: 26px 20px;

    border-radius: 24px;
  }

  .container h2 {
    font-size: 28px;
  }

  #contactWrap {
    padding-bottom: 72px;
  }
}

@media screen and (max-width: 430px) {
  .visualGrid {
    grid-template-columns: 1fr !important;

    gap: 14px;
  }

  .visualCard {
    border-radius: 20px;
  }

  .visualCard img {
    aspect-ratio: 4 / 3;
  }

  .visualCard div {
    padding: 18px;
  }

  .visualCard h3 {
    font-size: 19px;
  }

  .visualCard p {
    font-size: 15px !important;
    line-height: 1.65;
  }
}

@media screen and (max-width: 380px) {
  #main {
    padding-right:
      calc(
        12px +
        var(--app1-device-safe-right)
      );

    padding-left:
      calc(
        12px +
        var(--app1-device-safe-left)
      );
  }

  #logoImgCont,
  #logo {
    width: 116px;
  }

  .homeHero h1 {
    font-size: 36px;
  }
}

/* =========================
   HONEYPOT
   ========================= */

.hpField {
  position: absolute;
  top: auto;
  left: -9999px;

  width: 1px;
  height: 1px;

  overflow: hidden;

  opacity: 0;

  pointer-events: none;
}

/* ===============================
   AUTOFILL FIX
   =============================== */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color:
    var(--text-main) !important;

  caret-color: var(--text-main);

  -webkit-box-shadow:
    0 0 0 1000px
    var(--bg-input)
    inset !important;

  box-shadow:
    0 0 0 1000px
    var(--bg-input)
    inset !important;

  border-color:
    var(--border-soft) !important;

  transition:
    background-color
    9999s
    ease-in-out
    0s;
}

input:-webkit-autofill:focus,
textarea:-webkit-autofill:focus,
select:-webkit-autofill:focus {
  border-color:
    var(--border-strong) !important;
}

#siteFooterRoot{
  width:100%;
  background:var(--bg-header);
 
}

