/* Full Reset & Premium Aesthetic Match */
:root {
    --bg-color: #000000;
    --primary-accent: #8f05ee;
    --secondary-accent: #ff3225;
    --tranki-green: #d1ff3c; /* Neon green from screenshot */
    --text-color: #FFFFFF;
    --text-dim: #a0a0a0;
    --transition: cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* --- FULLTRANKI HEADER --- */
.fulltranki-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
}

.main-logo {
    height: 60px; /* High-res vector size */
    width: auto;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
}

.lang-selector i {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
    transition: var(--transition);
}

.nav-link:hover {
    opacity: 1;
}

.btn-login {
    display: inline-block;
    background: var(--tranki-green);
    color: #000;
    padding: 0.8rem 2.2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(209, 255, 60, 0.2);
    transition: var(--transition);
}

.btn-login:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(209, 255, 60, 0.4);
}

/* --- PIXEL-PERFECT HERO --- */
.hero {
    height: 100vh;
    background: url('../assets/image2.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-top: 20vh;
}

.hero-container {
    width: 100%;
}

.hero-content {
    max-width: 1200px;
    text-align: left;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    line-height: 0.85;
    letter-spacing: -0.02em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.tranki-bubble {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 4rem; /* Adjusted for image focus */
    border-radius: 80px 80px 180px 80px;
    position: absolute;
    bottom: 3rem;
    right: 3rem;
}

.bubble-logo {
    height: 120px; /* Larger focus on the logo mockup */
    width: auto;
}

/* --- HELP SECTION V2 (ABSOLUTE) --- */
.help-section {
    background: #000000;
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

.help-title {
    position: absolute;
    top: 5rem;
    left: 4rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    line-height: 0.85;
    color: #fff;
    z-index: 5;
}

.section-icon-tranki {
    position: absolute;
    top: 5rem;
    right: 4rem;
    height: 60px;
    filter: brightness(0) invert(1); /* Ensure it's white */
    z-index: 5;
}

.phone-mockup {
    position: absolute;
    bottom: -3%;
    left: 3%;
    width: 65%; /* Large focus */
    transform: rotate(5deg);
    z-index: 10;
}

.feature-box {
    position: absolute;
    background: linear-gradient(135deg, rgba(104, 102, 102, 0.747) 0%, rgba(99, 88, 88, 0.486) 100%);
    border: 2px solid rgba(255, 255, 255, 0.308);
    padding: 1rem 4rem;
    border-radius: 20px;
    max-width: 550px;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.box-1 {
    top: 40%;
    left: 37%;
    transform: translate(0, 0);
}

.box-2 {
    bottom: 4%;
    right: 8%;
}

.feature-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
    color: #fff;
    text-align: center;
}

.feature-box p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.8;
    text-align: center;
    color: #fff;
}

.bottom-right-logo {
    position: absolute;
    bottom: 4rem;
    right: 3rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* --- STEPS SECTION (CARD 3) - PRO REFINEMENT --- */
.steps-section {
    background: linear-gradient(90deg, #000 40%, #111 100%);
    min-height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Darken left side overlay */
.steps-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, #000 60%, transparent);
    z-index: 1;
}

.steps-content-left {
    position: relative;
    z-index: 20;
    width: 42%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-left: 6%;
}

.steps-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 900;
    font-size: 6.5rem;
    letter-spacing: -2px;
    color: #fff;
    margin: 0;
    line-height: 1;
}

.steps-thumbnails-row {
    display: flex;
    gap: 1.2rem;
}

.thumb-wrapper {
    height: 140px; /* Reduced from 140px */
    background: #111;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.9);
    transition: all 0.4s ease;
}

.step-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.steps-pill-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-pill {
    border: 1.5px solid rgba(255,255,255,0.8);
    border-radius: 50px;
    padding: 0.9rem 2.5rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    width: fit-content;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    cursor: default;
}

.step-pill:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

.hand-mockup {
    position: absolute;
    right: -20%;
    bottom: 5%;
    height: 120vh;
    z-index: 10;
}

/* Glow behind phone */
.hand-mockup::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,180,50,0.1) 0%, transparent 70%);
    z-index: -1;
}

.hand-mockup img {
    height: 100%;
    object-fit: contain;
    filter: contrast(1.1) brightness(0.95);
}

/* Responsive Cleanup */
@media (max-width: 1200px) {
    .steps-logo { font-size: 4rem; }
    .steps-content-left { width: 60%; }
    .hand-mockup { opacity: 0.4; }
}

/* Cleanup leftover responsive tweaks that might conflict */
@media (max-width: 1024px) {
    .help-title { font-size: 5rem; left: 2rem; }
    .phone-mockup { width: 100%; bottom: -5%; }
    .box-1 { left: 10%; top: 40%; }
    .box-2 { right: 5%; bottom: 15%; }
}

@media (max-width: 768px) {
    .container { padding: 0 2rem; }
    .hero-title { font-size: 4rem; }
    .nav-actions .nav-link, .lang-selector { display: none; }
}

/* --- PRICING SECTION (CARD 4) --- */
.pricing-section {
    background: #000;
    min-height: 100vh;
    padding: 8rem 0 2rem;
    position: relative;
    display: flex;
    align-items: center;
}

.pricing-container {
    width: 100%;
}

.pricing-header {
    margin: 12rem 0 3rem 0;
}

.pricing-subtitle {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.pricing-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.404) 0%, rgba(255,255,255,0.02) 100%);
    border: 2px solid rgba(255,255,255,0.15);
    padding: 3rem 0rem;
    border-radius: 2rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 250px; /* Adjusted for longer text in Boost/Ultra */
}

.pricing-card:hover {
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-5px);
}

.pricing-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.pricing-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
}

/* Section elements */
.section-icon-tranki {
    position: absolute;
    top: 4rem;
    right: 4rem;
    width: 80px;
    opacity: 0.8;
}

.bottom-right-logo {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* Pricing Responsive Cleanup */
@media (max-width: 1200px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .help-title { font-size: 4rem; }
    .pricing-card { min-height: auto; }
}

/* --- FOOTER --- */
.main-footer {
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.05); /* Subtle separation */
    padding: 3rem 0;
    color: rgb(255, 255, 255); /* Muted text as in reference */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p {
    margin: 0;
    font-size: 0.85rem;
}

.footer-right {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: inherit;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
