@import url("ffaces.css");
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --dark-03: #1A2F8D;
    --dark-01: #070E27;
    --dark-07: #C0CBF3;
    --dark-04: #2141CA;
    --dark-08: #EBEFFF;
    --white: #FFFFFF;
}
body {
    font-family: 'Stolzl', Arial, sans-serif;
    background: var(--white);
    color: var(--dark-01);
    overflow-x: hidden;
}
.page {
    min-height: 100vh;
    width: 100%;
    position: relative;
}
/* Effect */
.container {
    display: flex;
    align-items: center;
    font-size: 120px;
    color: #000000;
    line-height: 1.3;
    gap: 12px;
    display: flex;
    justify-content: center;
}
.hero {
    padding: 450px 120px 0px 60px;
    text-align: center;
}
.hero-text .light {
    font-weight: 300;
}
.hero-text .bold {
    font-weight: 700;
}
.static-word {
    margin-left: 15px;
}
.word-wrapper {
    height: 1.2em;
    overflow: hidden;
    position: relative;
    height: 156px;
}
.sliding-words {
    display: flex;
    flex-direction: column;
    transform: translateY(calc(-100% + 1.2em)); 
    animation: slide-down 10s infinite; 
}
.sliding-words span {
    display: block;
    height: 1.2em;
    text-align: right;
    white-space: nowrap;
}
@keyframes slide-down {
    0%, 8% { transform: translateY(calc(-100% + 1.2em)); }
    10%, 18% { transform: translateY(calc(-100% + 2.4em)); }
    20%, 28% { transform: translateY(calc(-100% + 3.6em)); }
    30%, 38% { transform: translateY(calc(-100% + 4.8em)); }
    40%, 48% { transform: translateY(calc(-100% + 6.0em)); }
    50%, 58% { transform: translateY(calc(-100% + 7.2em)); }
    60%, 68% { transform: translateY(calc(-100% + 8.4em)); }
    70%, 78% { transform: translateY(calc(-100% + 9.6em)); }
    80%, 88% { transform: translateY(calc(-100% + 10.8em)); }
    90%, 98% { transform: translateY(calc(-100% + 12.0em)); }
    100% { transform: translateY(0); } 
}
@media (max-width: 600px) {
    .container {
        font-size: 2rem;
        flex-direction: column;
    }
    .static-word {
        margin-left: 0;
    }
    .sliding-words span {
        text-align: center;
    }
}
/* Header */
.header {
    position: fixed;
    width: 100%;
    padding: 52px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
}
.menu {
    display: flex;
    gap: 40px;
    font-size: 20px;
    font-weight: 400;
    width: 100%;
}
.menu a {
    color: var(--dark-04);
    text-decoration: none;
    transition: opacity 0.3s;
}
.menu a:hover {
    opacity: 0.7;
}
.logo {
    width: auto;
    height: auto;
}
.header-button-size{
    width: 100%;
    justify-content: right;
    display: grid;
}
.header-button {
    background: var(--dark-08);
    padding: 4px 4px 4px 24px;
    border-radius: 52px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--dark-04);
    font-size: 16px;
    font-weight: 400;
    transition: transform 0.3s;
    width: fit-content;
}
.header-button:hover {
    transform: translateY(-2px);
}
.header-button .arrow {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Blue Brand Section */
.blue-brand {
    background: #0053DB;
    padding: 0px 0px 0px 120px;
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 410px;
}
.blue-brand-text {
    flex: 1;
    color: var(--dark-08);
}
.blue-brand-text .icon-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}
.blue-brand-text .subtitle {
    font-size: 22px;
    font-weight: 300;
}
.blue-brand-text .title {
    font-size: 56px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 60px;
}
.blue-brand-text .stats {
    font-size: 28px;
    font-weight: 400;
}
.blue-brand-image {
    width: 746px;
    height: 746px;
}
.video-scaled {
    width: 746px;
    height: 746px;
    object-fit: cover;
}
/* Kristal Divider */
.kristal {
    width: 224px;
    height: 32px;
    margin: 152px auto 152px;
}
/* Services Section */
.services {
    padding: 0 120px;
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
}
.services::-webkit-scrollbar {
    display: none;
}
.service-card {
    background: var(--dark-08);
    border-radius: 24px;
    padding: 32px;
    min-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.service-card .project-no {
    display: flex;
    align-items: center;
    gap: 20px;
}
.service-card .project-no .number {
    font-size: 70px;
    font-weight: 350;
    line-height: 1;
}
.service-card .project-no .text {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.2;
}
.service-card .line {
    height: 1px;
    background: var(--dark-07);
}
.service-card .icon {
    width: auto;
    height: 200px;
}
.service-card .title {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 12px;
}
.service-card .description {
    font-size: 14px;
    font-weight: 380;
    line-height: 1.7;
}
/* Brands Section */
.brands-section {
    padding: 0 120px;
    margin-top: 152px;
}
.brands-section .section-title {
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 32px;
}
.brands-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 32px;
}
.brand-tag {
    border: 1px solid var(--dark-07);
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 20px;
    font-weight: 380;
    color: var(--dark-03);
    align-items: center;
    display: flex;
}
.brand-tag:hover {
    border: 1px solid var(--dark-04);
    transform: translateY(-2px);
}
.start-button {
    background: var(--dark-08);
    border-radius: 52px;
    padding: 4px 4px 4px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    width: fit-content;
    margin: 0 auto;
    text-decoration: none;
    color: var(--dark-03);
    font-size: 24px;
    font-weight: 400;
    transition: transform 0.3s;
}
.start-button:hover {
    transform: translateY(-2px);
}
.start-button .arrow {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.arrowsize {
    width: 28px;
    height: 28px;
}
/* Follow Section */
.follow-section {
    padding: 52px 120px;
    margin: 152px 120px 0;
    border-radius: 52px;
    background-image: url(images/followbg.png);
    text-align: center;
}
.follow-section .title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 32px;
}
.follow-list {
    display: flex;
    gap: 14px;
    justify-content: center;
}
.follow-item {
    background: var(--white);
    border: 1px solid var(--dark-07);
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    color: var(--dark-01);
    transition: transform 0.3s, background 0.3s;
}
.follow-item:hover {
    transform: translateY(-2px);
    background: var(--dark-08);
}
/* Footer */
.footer {
    padding: 152px 120px 152px;
    text-align: center;
}
.footer p {
    font-size: 12px;
    font-weight: 400;
    color: var(--dark-03);
}
/* Studio Page */
.studio-banner {
    padding: 252px 120px 52px 120px;
    text-align: center;
}
.about-section {
    padding: 200px 120px;
    display: flex;
    gap: 80px;
     align-items: flex-start;
}
.about-left {
    flex: 1;
}
.about-left .title {
    font-size: 72px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 60px;
    margin-top: 60px;
}
.about-left .kristal-small {
    width: 400px;
    height: 100px;
}
.about-right {
    flex: 1;
}
.about-right .description {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 60px;
}
.about-right .approach-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 40px;
}
.approach-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.approach-item .item-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}
.approach-item .item-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark-01);
    opacity: 0.8;
}
/* Total Projects */
.total-projects {
    padding: 0 120px;
    display: flex;
    gap: 24px;
    margin-top: 100px;
}
.project-stat {
    flex: 1;
    border: 1px solid var(--dark-07);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
}
.project-stat .number {
    font-size: 20px;
    font-weight: 350;
    color: var(--dark-03);
    margin-bottom: 32px;
}
.project-stat .text {
    font-size: 72px;
    font-weight: 350;
    line-height: 1.2;
}
/* Design Page */
.project-list {
    padding: 200px 120px 0px;
}
.project-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    font-size: 24px;
    font-weight: 400;
}
.project-item {
    border-top: 1px solid var(--dark-07);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--dark-01);
}
.project-item:hover {
    background-color: #EBEFFF;
    padding: 24px 24px;
}
.project-info .year {
    font-size: 16px;
    font-weight: 350;
    color: var(--dark-03);
    margin-bottom: 8px;
}
.project-info .name {
    font-size: 48px;
    font-weight: 400;
}
.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.project-tag {
    border: 1px solid var(--dark-07);
    border-radius: 50px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 400;
    color: var(--dark-03);
}
.project-tag:hover {
    border: 1px solid var(--dark-04);
    transform: translateY(-2px);
}
/* Brands Page */
.brands-hero {
    padding: 252px 152px 80px 152px;
    text-align: center;
}
.brands-hero .title {
    font-size: 96px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 60px;
}
.brands-hero .subtitle {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 24px;
}
.brands-hero .description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark-01);
    opacity: 0.8;
}
.brands-grid {
    padding: 0 120px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 100px;
}
.brand-cards {
    background: var(--dark-08);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.brand-cards .b-logo {
    width: 100%;
  justify-content: left;
  display: grid;
}
.brand-cards img {
    width: 100%;
    height: 100px;
}
.h {
    height: 100%;
}
.brand-cards .card-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
}
.brand-cards .card-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark-01);
    opacity: 0.8;
}
.brand-cards .card-button {
    background: var(--white);
    border-radius: 52px;
    padding: 4px 4px 4px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    text-decoration: none;
    color: var(--dark-04);
    font-size: 14px;
    font-weight: 400;
    transition: transform 0.3s;
}
.brand-cards .card-button:hover {
    transform: translateY(-2px);
}
.brand-cards .card-button .arrow {
    width: 44px;
    height: 44px;
    background: var(--dark-08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.arrow img {
    width: auto;
    height: auto;
}
/* Contact Page */
.contact-hero {
    padding: 454px 720px 100px;
    text-align: center;
}
.contact-email {
    background: var(--dark-08);
    border-radius: 52px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 200px auto;
    text-decoration: none;
    color: var(--dark-01);
    transition: transform 0.3s;
    width: fit-content;
    gap: 32px;
}
.contact-email:hover {
    transform: translateY(-2px);
    background: var(--dark-04);
    color: var(--dark-08);
}
.contact-email .email {
    font-size: 48px;
    font-weight: 400;
}
.contact-email .arrow {
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Responsive */
@media (max-width: 1258px), (max-width: 1200px) {
.blue-brand {
  padding: 120px 120px 0px 120px;
  display: block;
}
.service-card {
  min-width: 452px;
  display: flex;
  gap: 32px;
}
.footer {
  padding: 120px 0px 120px 0px;
}
.studio-banner {
  padding: 250px 120px 52px 120px;
}
.studio-banner img {
    width: 44%;
}
.about-section {
  padding: 180px 120px;
  gap: 40px;
}
.about-left .title {
  font-size: 52px;
  margin-top: 40px;
}
.about-right .description {
  font-size: 24px;
  margin-bottom: 40px;
}
.about-right .approach-title {
  margin-bottom: 32px;
}
.project-stat {
  padding: 32px 44px;
}
.project-stat .text {
  font-size: 52px;
  line-height: normal;
}
.project-info .name {
  font-size: 40px;
}
.project-tags {
  justify-content: right;
}
.brands-hero .title {
  font-size: 70px;
}
.brands-grid {
  grid-template-columns: repeat(2, 1fr);
}
.b-logo img {
  width: 80%;
}
}
@media (max-width: 1025px), (max-width: 1020px) {
.header {
  padding: 32px;
}
.menu {
  font-size: 16px;
}
.header-button {
  font-size: 14px;
  padding: 4px 4px 4px 20px;
  gap: 14px;
}
.header-button .arrow {
  width: 40px;
  height: 40px;
}
.hero {
  padding: 400px 120px 0px 60px;
}
.container {
  font-size: 100px;
  line-height: 1.4;
}
.word-wrapper {
  height: 140px;
}
.blue-brand {
  padding: 60px 60px 0px 60px;
  margin-top: 300px;
}
.blue-brand-text .title {
  font-size: 46px;
}
.blue-brand-text .stats {
  font-size: 24px;
}
.blue-brand-image {
  width: 600px;
  height: 600px;
}
.video-scaled {
  width: 600px;
  height: 600px;
  object-fit: cover;
}
.kristal {
  margin: 124px auto 124px;
}
.service-card {
    min-width: 400px;
    gap: 24px;
    padding: 28px;
}
.services {
  padding: 0 60px;
}
.service-card .project-no {
  gap: 12px;
}
.service-card .project-no .number {
  font-size: 60px;
}
.service-card .project-no .text {
  font-size: 20px;
}
.service-card .title {
  font-size: 24px;
}
.service-card .description {
  font-size: 12px;
}
.brands-section {
  padding: 0 60px;
  margin-top: 124px;
}
.brands-section .section-title {
  font-size: 24px;
  margin-bottom: 20px;
}
.brands-list {
  gap: 8px;
}
.brand-tag {
  padding: 10px 16px;
  font-size: 16px;
}
.start-button {
  padding: 4px 4px 4px 24px;
  gap: 16px;
  font-size: 18px;
}
.start-button .arrow {
  width: 48px;
  height: 48px;
}
.follow-section {
  padding: 24px 60px;
  margin: 60px 60px 0;
}
.follow-section .title {
  font-size: 24px;
  margin-bottom: 24px;
}
.follow-item {
  border-radius: 50px;
  padding: 10px 16px;
  font-size: 16px;
}
.footer {
    padding: 60px 0px 60px 0px;
}
.studio-banner {
    padding: 200px 60px 48px 60px;
}
.about-section {
    padding: 120px 60px;
    gap: 20px;
    display: block;
}
.about-left {
  margin-bottom: 40px;
}
.about-left .title {
    font-size: 48px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.about-right .description {
    font-size: 20px;
}
.total-projects {
  padding: 0 60px;
}
.project-stat .text {
    font-size: 44px;
}
.project-stat {
    padding: 24px 40px;
}
.project-stat .number {
  font-size: 18px;
  margin-bottom: 20px;
  }
  .project-list {
  padding: 150px 60px 0px;
}
.project-list-header {
  margin-bottom: 22px;
  font-size: 18px;
}
.project-item {
  padding: 20px 0;
}
.project-info .name {
    font-size: 28px;
    width: max-content;
  }
  .project-tag {
  padding: 4px 8px;
  font-size: 11px;
}
.brands-hero {
  padding: 252px 60px 80px 60px;
}
  .brands-hero .title {
    font-size: 52px;
  }
  .brands-hero .subtitle {
  font-size: 24px;
}
.brands-hero .description {
  font-size: 14px;
}
.brands-grid {
  padding: 0 60px;
  margin-top: 60px;
}
.contact-email {
  padding: 20px 20px 20px 40px;
  gap: 20px;
}
.contact-email .email {
  font-size: 40px;
}
}
@media (max-width: 961px) {
  .container {
    font-size: 80px;
    line-height: 1.2;
  }
    .word-wrapper {
    height: 100px;
  }
  .project-tags {
  gap: 4px;
}
.project-item {
  gap: 32px;
}
.contact-email {
    padding: 16px 16px 16px 32px;
    gap: 16px;
  }
    .contact-email .email {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
     .header {
    padding: 24px;
  }
  .menu {
  gap: 24px;
  font-size: 14px;
}
.logo img {
    width: 190px;
}
  .hero {
    padding: 324px 80px 0px 40px;
  }
    .container {
    font-size: 60px;
    line-height: 1.2;
  }
   .word-wrapper {
    height: 76px;
  }
    .blue-brand {
    padding: 40px 40px 0px 40px;
    margin-top: 200px;
  }
  .blue-brand-text .icon-row {
  gap: 16px;
  margin-bottom: 40px;
}
.blue-brand-text .subtitle {
  font-size: 18px;
  font-weight: 300;
}
 .blue-brand-text .title {
    font-size: 38px;
    margin-bottom: 40px;
  }
    .blue-brand-text .stats {
    font-size: 20px;
  }
  .blue-brand-image {
    width: 550px;
    height: 550px;
  }
   .video-scaled {
    width: 550px;
    height: 550px;
    object-fit: cover;
  }
   .kristal {
    margin: 100px auto 100px;
  }
  .services {
    padding: 0 40px;
  }
  .service-card {
    min-width: 320px;
    gap: 20px;
    padding: 20px;
  }
  .service-card .project-no .number {
    font-size: 48px;
  }
  .service-card .project-no .text {
    font-size: 18px;
  }
  .service-card .icon {
  width: auto;
  height: 160px;
}
.icon img {
    height: 100%;
}
.service-card .title {
    font-size: 20px;
  }
  .brands-section {
    padding: 0 40px;
  }
    .follow-section {
    padding: 20px 60px;
    margin: 40px 40px 0;
  }
    .studio-banner {
    padding: 150px 40px 40px 40px;
  }
   .about-section {
    padding: 100px 40px;
    display: block;
  }
   .about-left {
    margin-bottom: 20px;
  }
  .about-left .title {
    font-size: 40px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .about-right .description {
    font-size: 16px;
  }
  .about-right .approach-title {
  font-size: 16px;
}
.approach-list {
  gap: 20px;
}
.approach-item .item-title {
  font-size: 14px;
}
.approach-item .item-text {
  font-size: 12px;
}
.total-projects {
    padding: 0 40px;
    gap: 12px;
  }
  .project-stat {
    padding: 24px 16px 20px 16px;
  }
  .project-stat .text {
    font-size: 40px;
  }
  .project-list {
    padding: 120px 40px 0px;
  }
  .project-info .year {
  font-size: 14px;
}
.project-info .name {
    font-size: 24px;
    width: max-content;
  }
   .project-tag {
    padding: 4px 8px;
    font-size: 10px;
  }
  .brands-hero {
    padding: 200px 40px 60px 40px;
  }
  .brands-hero .title {
    font-size: 44px;
    margin-bottom: 40px;
  }
  .brands-grid {
    padding: 0 40px;
    margin-top: 40px;
  }
  .brand-cards {
  padding: 24px;
  gap: 24px;
}
.brand-cards img {
  height: 76px;
}
.brand-cards .card-title {
  font-size: 18px;
  margin-bottom: 10px;
}
.brand-cards .card-description {
  font-size: 12px;
  line-height: 1.4;
}
.contact-email {
margin: 200px auto 60px auto;
  }
}
@media (max-width: 640px), (max-width: 576px) {
     
}