/* reset & base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'EuclidCircularA', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #3f2b22;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

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

u {
    text-decoration: underline;
}

/* grid & container */
.t-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.t-col {
    width: 100%;
}

/* header / topbar */
.topbar {
    background: #fff;
    padding: 25px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    min-height: 70px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-logo {
    width: 44px;
    height: 44px;
}

.topbar-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.topbar-slogan {
    font-size: 14px;
    color: #000;
    max-width: 220px;
    line-height: 1.3;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.topbar-right span {
    display: none;
}

.topbar-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: #000;
}

.topbar-phone svg {
    width: 23px;
    height: 22px;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-wa svg {
    width: 24px;
    height: 23px;
}

.topbar-wa span {
    font-size: 16px;
    color: #000;
}

.topbar-tg img{
    width: 24px;
    height: 23px;
}

.topbar-max img{
    width: 24px;
    height: 23px;
}

.topbar-center {
    font-size: 32px;
    text-align: center;
    line-height: 40px;
}

/* hero */
.hero {
    background: #fff;
    text-align: center;
    padding: 60px 20px 20px;
    border-top: 1px solid #ffe0c4;
}

.hero h1 {
    font-size: 64px;
    font-weight: 500;
    line-height: 1.1;
    color: #000;
    max-width: 834px;
    margin: 0 auto 30px;
}

.hero p {
    font-size: 24px;
    color: #000;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

@media (max-width: 1052px) {
    .topbar-center {
        font-size: 20px;
        line-height: 30px;
    }
}

@media (max-width: 850px) {
    .topbar {
        gap: 30px;
    }

    .topbar-left {
        order: 1;
        flex: 1;
    }

    .topbar-center {
        order: 3;
        flex: 0 0 100%;
        width: 100%;
    }

    .topbar-right {
        order: 2;
        flex: 1;
        justify-content: end;
    }

    .hero {
        padding-top: 30px;
    }
}

@media (max-width: 960px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }

    .topbar-slogan {
        font-size: 12px;
        max-width: 136px;
    }

    .topbar-phone {
        font-size: 14px;
    }

    .topbar-wa span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 20px;
    }

    .topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px 6px;
    }

    .topbar-right {
        width: 100%;
        justify-content: space-between;
    }

    .topbar-right span {
        display: block;
    }

    .topbar-slogan {
        max-width: 240px;
    }
}

/* form card */
.form-wrap {
    padding: 30px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.t-form {
    background: #fff;
}

.t-input-group {
    margin-bottom: 24px;
}

.t-input-title {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: #3f2b22;
    margin-bottom: 6px;
}

.t-input-block {
    border-radius: 12px;
}

.t-input {
    width: 100%;
    padding: 20px 16px;
    font-size: 16px;
    color: #000;
    background: #fff;
    border: 1px solid #ebb48f;
    border-radius: 12px;
    outline: none;
    transition: 0.2s;
}

.t-input:focus {
    border-color: #3f2b22;
    box-shadow: 0 0 0 3px rgba(63, 43, 34, 0.1);
}

.t-input::placeholder {
    color: #000;
    opacity: 0.5;
}

/* checkbox */
.t-checkbox__control {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #000;
    cursor: pointer;
}

.t-checkbox__control input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #3f2b22;
    cursor: pointer;
}

.t-checkbox__indicator {
    display: none;
}

/* submit */
.t-submit {
    background: #3f2b22;
    color: #fff;
    border: none;
    border-radius: 32px;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    display: block;
    margin: 0 auto;
}

.t-submit:hover {
    background: #664333;
}

.t-form__submit {
    margin-top: 12px;
}

/* cookie bar */
/*.cookie-bar {*/
/*    position:fixed;*/
/*    bottom:0;*/
/*    left:0;*/
/*    right:0;*/
/*    background:#fff;*/
/*    border-top:1px solid #eaeaea;*/
/*    padding:14px 24px;*/
/*    display:flex;*/
/*    flex-wrap:wrap;*/
/*    align-items:center;*/
/*    justify-content:space-between;*/
/*    gap:12px;*/
/*    z-index:1000;*/
/*    box-shadow:0 -4px 12px rgba(0,0,0,0.04);*/
/*    font-size:14px;*/
/*    color:#3f2b22;*/
/*}*/
/*.cookie-bar .cookie-text {*/
/*    max-width:800px;*/
/*    font-weight:400;*/
/*}*/
/*.cookie-bar .cookie-text a { text-decoration:underline; }*/
/*.cookie-btn {*/
/*    background:#ffe0c4;*/
/*    border:none;*/
/*    border-radius:30px;*/
/*    padding:8px 28px;*/
/*    font-size:16px;*/
/*    color:#3f2b22;*/
/*    cursor:pointer;*/
/*    font-weight:400;*/
/*    transition:0.2s;*/
/*    flex-shrink:0;*/
/*}*/
/*.cookie-btn:hover { background:#f0cfb0; }*/
/*.cookie-close {*/
/*    background:transparent;*/
/*    border:none;*/
/*    font-size:22px;*/
/*    cursor:pointer;*/
/*    color:#3f2b22;*/
/*    padding:0 6px;*/
/*    line-height:1;*/
/*}*/

/* footer */
.footer {
    background: #fff;
    padding: 24px 20px 12px;
    border-top: 1px solid #f0f0f0;
    font-size: 14px;
    color: #3f2b22;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 40px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: column;
}

.footer-grid .col {
    flex: 1 1 30px;
    min-width: 160px;
    font-size: 14px;
    color: #3f2b22;
}

.footer-grid .col u {
    text-decoration: underline;
}

.footer-grid .col ul {
    list-style-type: none;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    text-align: left;
}

.footer-grid .col ul a {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #9f9f9f;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
}

ul.shadow li a {
    color: #9f9f9f;
}

.footer-bottom a {
    color: #9f9f9f;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-grid .col ul {
        text-align: center;
        justify-content: center;
    }

    .cookie-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-btn {
        align-self: flex-start;
    }
}

@media (max-width: 1200px) {
    .hero {
        padding-top: 45px;
    }
    .hero h1 {
        font-size: 35px;
    }
    .hero p {
        font-size: 18px;
    }
}

/* popup placeholder (simulated) */
.popup-trigger {
    cursor: pointer;
}

/* utility */
.mt-1 {
    margin-top: 6px;
}

.mb-1 {
    margin-bottom: 6px;
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}