/* ==========================================================================
   Clockerr — Coming Soon Landing Page
   ========================================================================== */

:root {
  --green: #16C784;
  --green-dark: #109F6B;
  --green-light: #E8F9F1;
  --black: #0D1117;
  --dark-grey: #1F2933;
  --light-grey: #F3F5F7;
  --grey-text: #5B6470;
  --white: #FFFFFF;

  --font-main: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container-w: 1280px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 10px 30px rgba(13, 17, 23, 0.06);
  --shadow-med: 0 20px 50px rgba(13, 17, 23, 0.08);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

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

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
}

.accent { color: var(--green); }

/* ---------- Fade-in on scroll ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/*==================================
 Header
===================================*/

.site-header{
    position:sticky;
    top:0;
    z-index:999;

    background:#ffffff;

    border-bottom:1px solid #ececec;
}

.header-inner{

    height:90px;

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

}

.header-left{

    display:flex;
    align-items:center;

}

.header-logo{

    width: 100%;
    height:74px;

    display:block;

    margin:0;
    padding:0;

}

.header-right{

    display:flex;
    align-items:center;
    gap:14px;

}

/* Language Button */

.btn-icon{

    height:48px;
    min-width:175px;

    padding:0 14px;

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

    background:#fff;

    border:1px solid #E7E7E7;
    border-radius:16px;

    cursor:pointer;

    transition:.25s;
}

.btn-icon:hover{

    border-color:#16C784;

    transform:translateY(-2px);

}

.lang-code{

    flex:1;

    margin-left:8px;   /* Reduced spacing */

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

    color:#222;

    text-align:left;

}

.language-dropdown{

    position:relative;

}

.language-menu{

    position:absolute;

    top:58px;

    right:0;

    width:180px;

    background:#fff;

    border:1px solid #E8E8E8;

    border-radius:16px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    overflow:hidden;

    display:none;

    z-index:999;

}

.language-menu.show{

    display:block;

}

.lang-option{

    width:100%;

    padding:14px 18px;

    border:none;

    background:#fff;

    text-align:left;

    font-size:15px;

    font-weight:600;

    color:#222;

    cursor:pointer;

    transition:.25s;

}

.lang-option:hover{

    background:#F4FFF8;

    color:#16C784;

}

.btn-icon{

    min-width:175px;

    justify-content:space-between;

}
.btn-icon svg:first-child{

    color:#16C784;

    flex-shrink:0;

}

.arrow{

    color:#666;

    flex-shrink:0;

    transition:.3s;

}

.language-menu.show + .arrow{

    transform:rotate(180deg);

}
/* ======================================
   Mobile - Header Right Only
   ====================================== */

@media (max-width:768px){

    /* Only the right section */
    .header-right{
        display:flex;
        align-items:center;
        justify-content:flex-end;
        gap:8px;
        flex-shrink:0;
    }

    /* Language Button */
    .btn-icon{
        min-width:120px;
        height:42px;
        padding:0 10px;
        border-radius:12px;
    }

    .btn-icon svg{
        width:16px;
        height:16px;
    }

    .lang-code{
        font-size:13px;
        margin-left:6px;
    }

    .arrow{
        width:12px;
        height:12px;
    }

    /* Dropdown */
    .language-menu{
        width:150px;
        top:48px;
        right:0;
    }

    .lang-option{
        padding:12px 14px;
        font-size:13px;
    }

    /* Coming Soon Button */
    .btn-pill{
        height:42px;
        padding:0 14px;
        font-size:13px;
        border-radius:12px;
        gap:6px;
    }

    .btn-pill svg{
        width:15px;
        height:15px;
    }

}

/* Small Mobile */

@media (max-width:480px){

    .header-right{
        gap:6px;
    }

    .btn-icon{
        min-width:105px;
        height:38px;
        padding:0 8px;
    }

    .lang-code{
        font-size:12px;
    }

    .btn-pill{
        padding:0 12px;
        font-size:12px;
    }

    .btn-pill svg{
        width:14px;
        height:14px;
    }

}

/* Coming Soon */

.btn-pill{

    height:48px;

    padding:0 24px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    background:#fff;

    color:#16C784;

    border:1px solid #E7E7E7;

    border-radius:16px;
    font-size:15px;

    font-weight:700;

    cursor:pointer;

    transition:.25s;

}

.btn-pill:hover{

    border-color:#16C784;

    transform:translateY(-2px);

}

.btn-pill i{
    color:#16C784;
    font-size:16px;
    margin-right:8px;
}

/* Mobile */

@media (max-width:768px){

    .header-inner{

        height:90px;

    }

    .header-logo{

        height:52px;

    }

    .btn-pill{

        display:none;

    }

}
/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 64px 0 40px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  gap: 24px;
}

.hero-left { max-width: 560px; }

.hero-logo {
  height: 60px;
  width: auto;
  margin-bottom: 22px;
  margin-left: -10px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--green);
  text-transform: uppercase;
}

.hero-title {
  margin: 0 0 22px;
  font-size: clamp(3.4rem, 5vw, 4.5rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.hero-title span { display: block; }

.hero-desc {
  margin: 0 0 30px;
  max-width: 430px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--grey-text);
}

.form-label {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--black);
}

.signup-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--white);
  border: 1.5px solid var(--green);
  border-radius: 16px;
  padding: 5px;
  max-width: 480px;
  box-shadow: var(--shadow-soft);
}

.signup-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
}

.mail-icon { flex-shrink: 0; opacity: 0.8; }

.signup-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-main);
  font-size: 15px;
  height: 46px;
  background: transparent;
  color: var(--black);
}
.signup-input-wrap input::placeholder { color: #9AA3AD; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 24px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(22, 199, 132, 0.3);
}
.btn-primary.full-width { width: 100%; }

.form-feedback {
  min-height: 20px;
  font-size: 13.5px;
  margin: 10px 2px 0;
  font-weight: 600;
}
.form-feedback.success { color: var(--green-dark); }
.form-feedback.error { color: #D64545; }

.benefits-row {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 34px 0 0;
    padding: 0;
}

.benefits-row li {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
    gap: 12px;
}

.benefits-row li span:last-child {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-grey);
    line-height: 1.45;
}

.check-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--green);
    color: var(--green);
    background: #fff;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.benefits-row li:hover .check-circle {
    background: var(--green);
    color: var(--white);
}

/* Tablet */
@media (max-width: 992px) {
    .benefits-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:768px){

    .hero-inner{
        display:flex !important;
        flex-direction:column !important;
    }

    .hero-left{
        order:1 !important;
    }

    .hero-right{
        order:2 !important;
        margin-top:30px;
    }

}

/* ==========================================================================
   Features
   ========================================================================== */
.features-section { padding: 40px 0; }

.features-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.section-title {
  text-align: center;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 44px;
  letter-spacing: -0.01em;
}
.section-title span { display: inline; }
.section-title.center { max-width: 720px; margin-left: auto; margin-right: auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  align-items: center;
}
.feature-item {
  padding: 8px 22px;
  text-align: center;
  position: relative;
}
.feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: #DDE2E7;
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--green-light);
  margin-bottom: 18px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.feature-icon svg {
  font-size: 34px;
  width: 34px;
  height: 34px;
  color: var(--green);
}
.feature-item:hover .feature-icon {
  transform: translateY(-4px) scale(1.05);
  background: var(--green);
}
.feature-item:hover .feature-icon svg path,
.feature-item:hover .feature-icon svg circle,
.feature-item:hover .feature-icon svg rect {
  stroke: #ffffff;
}
.feature-item h3 {
  font-size: 15.5px;
  font-weight: 700;
  margin: 0 0 8px;
}
.feature-item p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--grey-text);
  margin: 0;
}
.feature-item {
    justify-content: flex-start;
}

.feature-item h3 {
    min-height: 52px;
}

.feature-item p {
    min-height: 95px;
}
/* ==========================================================================
   FEATURES RESPONSIVE
   ========================================================================== */

/* Tablet */
@media (max-width: 991px){

    .features-card{
        padding:48px 30px;
    }

    .features-grid{
        grid-template-columns:repeat(3,1fr);
        gap:30px 20px;
    }

    .feature-item{
        padding:0 15px;
    }

    .feature-item:not(:last-child)::after{
        display:none;
    }

    .feature-icon{
        width:60px;
        height:60px;
        margin-bottom:16px;
    }

    .feature-icon svg{
        width:30px;
        height:30px;
    }

    .feature-item h3{
        min-height:auto;
    }

    .feature-item p{
        min-height:auto;
    }

}

/* Mobile */
@media (max-width:767px){

    .features-section{
        padding:30px 0;
    }

    .features-card{
        padding:32px 20px;
        border-radius:20px;
    }

    .section-title{
        font-size:1.45rem;
        margin-bottom:32px;
    }

    .features-grid{
        grid-template-columns:repeat(2,1fr);
        gap:24px 18px;
    }

    .feature-item{
        padding:0;
    }

    .feature-icon{
        width:56px;
        height:56px;
        margin-bottom:14px;
    }

    .feature-icon svg{
        width:28px;
        height:28px;
    }

    .feature-item h3{
        font-size:15px;
        min-height:auto;
        margin-bottom:8px;
    }

    .feature-item p{
        font-size:13px;
        min-height:auto;
        line-height:1.5;
    }

}

/* Small Mobile */
@media (max-width:480px){

    .features-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .feature-item{
        max-width:300px;
        margin:0 auto;
    }

}

/* ==========================================================================
   Integrations
   ========================================================================== */
.integrations-section { padding: 56px 0; }

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px 44px;
}
.logo-word {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 30px;
  font-weight: 800;
  color: var(--dark-grey);
  opacity: 0.85;
  letter-spacing: -0.01em;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.logo-word small {
  font-size: 9px;
  font-weight: 700;
  align-self: flex-end;
  margin-bottom: 3px;
  color: var(--grey-text);
}
.logo-word.logo-exact { color: #E4392B; }
.logo-word.logo-with-icon { font-size: 25px; font-weight: 700; }
.logo-word:hover { opacity: 1; transform: translateY(-2px); }
.logo-divider {
  width: 1px;
  height: 28px;
  background: #DDE2E7;
}

/* ==========================================================================
   Newsletter
   ========================================================================== */
.newsletter-box{

max-width:1100px;
margin:auto;

background:#f8faf7;
border-radius:18px;

padding:34px 38px;

display:flex;
justify-content:space-between;
align-items:center;
gap:40px;

box-shadow:0 5px 20px rgba(0,0,0,.04);

}

.left-content{

display:flex;
align-items:center;
gap:28px;
flex:1;

}

/* Envelope */

.icon-box{

width:150px;
display:flex;
justify-content:center;
align-items:center;

}

.icon-box svg{
width:125px;
height:auto;
}

/* Text */

.text-content h2{

font-size:24px;
line-height:1.3;
font-weight:800;
color:#111;
margin-bottom:14px;

}

.text-content h2 span{
color:#16C784;
}

.text-content p{

font-size:17px;
line-height:1.8;
color:#444;
max-width:430px;

}

/* Right Side */

.right-content{

width:420px;

}

.newsletter-form{

display:flex;
flex-direction:column;
gap:14px;

}

.newsletter-form input{

height:64px;

border:1px solid #e6e6e6;
border-radius:12px;

padding:0 22px;

font-size:17px;

outline:none;

background:#fff;

transition:.3s;

}

.newsletter-form input:focus{

border-color:#16C784;
box-shadow:0 0 0 3px rgba(22,163,74,.12);

}

.newsletter-form button{

height:64px;

border:none;
cursor:pointer;

border-radius:12px;

background:#16C784;

font-size:22px;

font-weight:700;

color:#fff;

transition:.3s;

}

.newsletter-form button:hover{

background:#16C784;

}

.privacy{

display:flex;
align-items:center;
gap:8px;

margin-top:5px;

font-size:15px;

color:#444;

}

.privacy svg{

width:16px;
fill:#16C784;

}

/* Responsive */

@media(max-width:980px){

.newsletter-box{

flex-direction:column;
align-items:flex-start;

}

.right-content{

width:100%;

}

.left-content{

flex-direction:column;
align-items:flex-start;

}

.text-content p{

max-width:100%;

}

}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { padding: 40px 0 60px; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.footer-logo { height: 36px; width: auto; }
.footer-divider {
  width: 1px;
  height: 20px;
  background: #DDE2E7;
}
.footer-tagline {
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-text);
  margin: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
  .feature-item:nth-child(3)::after { display: none; }
  .feature-item:nth-child(3n)::after { display: none; }
  .newsletter-card { padding: 44px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { order: -1; margin-bottom: 8px; }
  .hero-left { max-width: 100%; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .header-inner { padding-top: 16px; padding-bottom: 16px; }
  .hero { padding: 32px 0 24px; }
  .hero-title { font-size: 2.1rem; }
  .signup-form {
    flex-direction: column;
    border-radius: 16px;
    padding: 6px;
  }
  .signup-input-wrap { padding: 10px 12px; }
  .btn-primary { width: 100%; height: 48px; }
  .benefits-row { gap: 18px 22px; }
  .features-card { padding: 40px 22px; border-radius: 22px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 28px 12px; }
  .feature-item::after { display: none !important; }
  .newsletter-card { grid-template-columns: 1fr; padding: 32px 22px; text-align: left; }
  .logos-row { gap: 22px 26px; }
  .logo-word { font-size: 16px; }
  .btn-pill span { display: inline; }
}

@media (max-width: 380px) {
  .btn-pill { padding: 0 14px; font-size: 12.5px; }
}
